diff options
author | Constance Okoghenun <cokoghenun@gitlab.com> | 2018-01-11 16:27:30 +0100 |
---|---|---|
committer | Constance Okoghenun <cokoghenun@gitlab.com> | 2018-01-11 16:27:30 +0100 |
commit | 0fe784cbfb56a701259d83c989341afb1b7bc124 (patch) | |
tree | 099ec5f39984c031b2403f75b1958be93e46d882 /doc/api/snippets.md | |
parent | 7d0a1285a10fcb4735c20e21d83367159402a06d (diff) | |
parent | 27732df37178c3a07c99304406dfdb41fa8b3670 (diff) | |
download | gitlab-ce-help-profiles-dispatcher-refactor.tar.gz |
Resolved conflicts in dispatcher.jshelp-profiles-dispatcher-refactor
Diffstat (limited to 'doc/api/snippets.md')
-rw-r--r-- | doc/api/snippets.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/api/snippets.md b/doc/api/snippets.md index fdafbfb5b9e..e57143e4215 100644 --- a/doc/api/snippets.md +++ b/doc/api/snippets.md @@ -84,7 +84,11 @@ Parameters: ``` bash -curl --request POST --data '{"title": "This is a snippet", "content": "Hello world", "description": "Hello World snippet", "file_name": "test.txt", "visibility": "internal" }' --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/snippets +curl --request POST \ + --data '{"title": "This is a snippet", "content": "Hello world", "description": "Hello World snippet", "file_name": "test.txt", "visibility": "internal" }' \ + --header 'Content-Type: application/json' \ + --header "PRIVATE-TOKEN: valid_api_token" \ + https://gitlab.example.com/api/v4/snippets ``` Example response: @@ -131,7 +135,11 @@ Parameters: ``` bash -curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" --data '{"title": "foo", "content": "bar"}' https://gitlab.example.com/api/v4/snippets/1 +curl --request PUT \ + --data '{"title": "foo", "content": "bar"}' \ + --header 'Content-Type: application/json' \ + --header "PRIVATE-TOKEN: valid_api_token" \ + https://gitlab.example.com/api/v4/snippets/1 ``` Example response: |