Prepared query creation uses POST, not PUT

This commit is contained in:
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 |
| ------ | ---------------------------- | -------------------------- |
| `PUT` | `/query` | `application/json` |
| `POST` | `/query` | `application/json` |
The table below shows this endpoint's support for
[blocking queries](/api/index.html#blocking-queries),
@ -224,7 +224,7 @@ The table below shows this endpoint's support for
```text
$ curl \
--request PUT \
--request POST \
--data @payload.json \
https://consul.rocks/v1/query
```