Commit 492813ec authored by Rene Verschoor's avatar Rene Verschoor

Add missing `:id` path parameter description

parent c57d6e3b
...@@ -964,6 +964,7 @@ GET /projects/:id/users ...@@ -964,6 +964,7 @@ GET /projects/:id/users
| Attribute | Type | Required | Description | | Attribute | Type | Required | Description |
| ------------ | ------------- | -------- | ----------- | | ------------ | ------------- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `search` | string | no | Search for specific users | | `search` | string | no | Search for specific users |
| `skip_users` | integer array | no | Filter out users with the specified IDs | | `skip_users` | integer array | no | Filter out users with the specified IDs |
...@@ -1509,6 +1510,7 @@ GET /projects/:id/starrers ...@@ -1509,6 +1510,7 @@ GET /projects/:id/starrers
| Attribute | Type | Required | Description | | Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- | | --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `search` | string | no | Search for specific users. | | `search` | string | no | Search for specific users. |
```shell ```shell
...@@ -1552,6 +1554,10 @@ Get languages used in a project with percentage value. ...@@ -1552,6 +1554,10 @@ Get languages used in a project with percentage value.
GET /projects/:id/languages GET /projects/:id/languages
``` ```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
```shell ```shell
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/languages" curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/languages"
``` ```
...@@ -2177,6 +2183,7 @@ PUT /projects/:id/transfer ...@@ -2177,6 +2183,7 @@ PUT /projects/:id/transfer
| Attribute | Type | Required | Description | | Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- | | --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `namespace` | integer/string | yes | The ID or path of the namespace to transfer to project to | | `namespace` | integer/string | yes | The ID or path of the namespace to transfer to project to |
## Branches ## Branches
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment