diff options
author | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-08-18 11:42:37 +0200 |
---|---|---|
committer | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-08-18 21:10:53 +0200 |
commit | ba01e519e24bf716c138a0b46e371c60de4aa935 (patch) | |
tree | 1021901a6a273f940e480914562ae59e4f35a31d /doc/api/deployments.md | |
parent | 182e28141d2e1ac904590a431ed7249d4c20984b (diff) | |
download | gitlab-ce-ba01e519e24bf716c138a0b46e371c60de4aa935.tar.gz |
Incorporate feedback
Diffstat (limited to 'doc/api/deployments.md')
-rw-r--r-- | doc/api/deployments.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/deployments.md b/doc/api/deployments.md index 9ce95664435..9a0d09d2623 100644 --- a/doc/api/deployments.md +++ b/doc/api/deployments.md @@ -260,10 +260,10 @@ GET /projects/:id/deployments/:deployment_id | Attribute | Type | Required | Description | |-----------|---------|----------|---------------------| | `id` | integer | yes | The ID of a project | -| `deployment_id` | string | yes | The ID of the deployment | +| `deployment_id` | integer | yes | The ID of the deployment | ```bash -curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/1/deployment/1" +curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/1/deployments/1" ``` Example of response |