Commit 981a6865 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Refactor labels API documentation [ci skip]

parent 835f1961
...@@ -2,83 +2,153 @@ ...@@ -2,83 +2,153 @@
## List labels ## List labels
Get all labels for given project. Get all labels for a given project.
``` ```
GET /projects/:id/labels GET /projects/:id/labels
``` ```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer | yes | The ID of the project |
```bash
curl -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/1/labels
```
Example response:
```json ```json
[ [
{ {
"name": "Awesome", "name" : "bug",
"color": "#DD10AA" "color" : "#d9534f"
}, },
{ {
"name": "Documentation", "color" : "#d9534f",
"color": "#1E80DD" "name" : "confirmed"
}, },
{ {
"name": "Feature", "name" : "critical",
"color": "#11FF22" "color" : "#d9534f"
}, },
{ {
"name": "Bug", "color" : "#428bca",
"color": "#EE1122" "name" : "discussion"
} },
{
"name" : "documentation",
"color" : "#f0ad4e"
},
{
"color" : "#5cb85c",
"name" : "enhancement"
},
{
"color" : "#428bca",
"name" : "suggestion"
},
{
"color" : "#f0ad4e",
"name" : "support"
}
] ]
``` ```
## Create a new label ## Create a new label
Creates a new label for given repository with given name and color. Creates a new label for the given repository with the given name and color.
It returns 200 if the label was successfully created, 400 for wrong parameters
and 409 if the label already exists.
``` ```
POST /projects/:id/labels POST /projects/:id/labels
``` ```
Parameters: | Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer | yes | The ID of the project |
| `name` | string | yes | The name of the label |
| `color` | string | yes | The color of the label in 6-digit hex notation with leading `#` sign |
```bash
curl --data "name=feature&color=#5843AD" -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/1/labels"
```
- `id` (required) - The ID of a project Example response:
- `name` (required) - The name of the label
- `color` (required) - Color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB)
It returns 200 and the newly created label, if the operation succeeds. ```json
If the label already exists, 409 and an error message is returned. {
If label parameters are invalid, 400 and an explaining error message is returned. "name" : "feature",
"color" : "#5843AD"
}
```
## Delete a label ## Delete a label
Deletes a label given by its name. Deletes a label with a given name.
It returns 200 if the label was successfully deleted, 400 for wrong parameters
and 404 if the label does not exist.
In case of an error, an additional error message is returned.
``` ```
DELETE /projects/:id/labels DELETE /projects/:id/labels
``` ```
- `id` (required) - The ID of a project | Attribute | Type | Required | Description |
- `name` (required) - The name of the label to be deleted | --------- | ---- | -------- | ----------- |
| `id` | integer | yes | The ID of the project |
| `name` | string | yes | The name of the label |
It returns 200 if the label successfully was deleted, 400 for wrong parameters ```bash
and 404 if the label does not exist. curl -X DELETE -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/1/labels?name=bug"
In case of an error, additionally an error message is returned. ```
Example response:
```json
{
"title" : "feature",
"color" : "#5843AD",
"updated_at" : "2015-11-03T21:22:30.737Z",
"template" : false,
"project_id" : 1,
"created_at" : "2015-11-03T21:22:30.737Z",
"id" : 9
}
```
## Edit an existing label ## Edit an existing label
Updates an existing label with new name or now color. At least one parameter Updates an existing label with new name or new color. At least one parameter
is required, to update the label. is required, to update the label.
It returns 200 if the label was successfully deleted, 400 for wrong parameters
and 404 if the label does not exist.
In case of an error, an additional error message is returned.
``` ```
PUT /projects/:id/labels PUT /projects/:id/labels
``` ```
Parameters: | Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer | yes | The ID of the project |
| `name` | string | yes | The name of the existing label |
| `new_name` | string | yes if `color` if not provided | The new name of the label |
| `color` | string | yes if `new_name` is not provided | The new color of the label in 6-digit hex notation with leading `#` sign |
```bash
curl -X PUT --data "name=documentation&new_name=docs&color=#8E44AD" -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/1/labels"
```
- `id` (required) - The ID of a project Example response:
- `name` (required) - The name of the existing label
- `new_name` (optional) - The new name of the label
- `color` (optional) - New color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB)
On success, this method returns 200 with the updated label. ```json
If required parameters are missing or parameters are invalid, 400 is returned. {
If the label to be updated is missing, 404 is returned. "color" : "#8E44AD",
In case of an error, additionally an error message is returned. "name" : "docs"
}
```
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