Merge pull request #3833 from szemek/curl-binary

Documentation KV Create/upload key, upload binary data or file with line breaks via curl
This commit is contained in:
James Phillips 2018-01-25 13:15:59 -08:00 committed by GitHub
commit e16f1032d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -197,13 +197,20 @@ The table below shows this endpoint's support for
The payload is arbitrary, and is loaded directly into Consul as supplied. The payload is arbitrary, and is loaded directly into Consul as supplied.
### Sample Request ### Sample Requests
```text ```bash
$ curl \ $ curl \
--request PUT \ --request PUT \
--data @contents \ --data @contents \
https://consul.rocks/v1/kv/my-key https://consul.rocks/v1/kv/my-key
# or
$ curl \
--request PUT \
--data-binary @contents \
https://consul.rocks/v1/kv/my-key
``` ```
### Sample Response ### Sample Response