Prepared query creation uses POST, not PUT

pull/2965/head
Anders Daljord Morken 2017-04-27 10:29:03 +02:00
parent 4af5b22669
commit a6c621396b
1 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ successfully.
| Method | Path | Produces | | Method | Path | Produces |
| ------ | ---------------------------- | -------------------------- | | ------ | ---------------------------- | -------------------------- |
| `PUT` | `/query` | `application/json` | | `POST` | `/query` | `application/json` |
The table below shows this endpoint's support for The table below shows this endpoint's support for
[blocking queries](/api/index.html#blocking-queries), [blocking queries](/api/index.html#blocking-queries),
@ -224,7 +224,7 @@ The table below shows this endpoint's support for
```text ```text
$ curl \ $ curl \
--request PUT \ --request POST \
--data @payload.json \ --data @payload.json \
https://consul.rocks/v1/query https://consul.rocks/v1/query
``` ```