debian-mirror-gitlab/doc/api/labels.md

350 lines
13 KiB
Markdown
Raw Normal View History

2020-06-23 00:09:42 +05:30
---
stage: Plan
group: Project Management
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-06-23 00:09:42 +05:30
---
2021-09-30 23:02:18 +05:30
# Labels API **(FREE)**
Interact with [labels](../user/project/labels.md) using the REST API.
2014-09-02 18:07:02 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2021-11-11 11:23:49 +05:30
The `description_html` - was [added](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/21413) to response JSON in GitLab 12.7.
2020-03-13 15:44:24 +05:30
2014-09-02 18:07:02 +05:30
## List labels
2016-04-02 18:10:28 +05:30
Get all labels for a given project.
2014-09-02 18:07:02 +05:30
2021-09-30 23:02:18 +05:30
By default, this request returns 20 results at a time because the API results [are paginated](index.md#pagination).
2020-05-24 23:13:21 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
GET /projects/:id/labels
```
2019-10-12 21:52:04 +05:30
| Attribute | Type | Required | Description |
| --------- | ------- | -------- | --------------------- |
2021-09-30 23:02:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2021-11-11 11:23:49 +05:30
| `with_counts` | boolean | no | Whether or not to include issue and merge request counts. Defaults to `false`. _([Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/31543) in GitLab 12.2)_ |
2019-12-21 20:55:43 +05:30
| `include_ancestor_groups` | boolean | no | Include ancestor groups. Defaults to `true`. |
2021-01-29 00:20:46 +05:30
| `search` | string | no | Keyword to filter labels by. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/259024) in GitLab 13.6 |
2016-04-02 18:10:28 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/labels?with_counts=true"
2016-04-02 18:10:28 +05:30
```
Example response:
2014-09-02 18:07:02 +05:30
```json
[
2017-08-17 22:00:37 +05:30
{
"id" : 1,
"name" : "bug",
"color" : "#d9534f",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"description": "Bug reported by user",
2020-03-13 15:44:24 +05:30
"description_html": "Bug reported by user",
2017-08-17 22:00:37 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 1,
"subscribed": false,
2019-07-07 11:18:12 +05:30
"priority": 10,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2017-08-17 22:00:37 +05:30
},
{
"id" : 4,
"color" : "#d9534f",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"name" : "confirmed",
"description": "Confirmed issue",
2020-03-13 15:44:24 +05:30
"description_html": "Confirmed issue",
2017-08-17 22:00:37 +05:30
"open_issues_count": 2,
"closed_issues_count": 5,
"open_merge_requests_count": 0,
"subscribed": false,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2017-08-17 22:00:37 +05:30
},
{
"id" : 7,
"name" : "critical",
"color" : "#d9534f",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"description": "Critical issue. Need fix ASAP",
2020-03-13 15:44:24 +05:30
"description_html": "Critical issue. Need fix ASAP",
2017-08-17 22:00:37 +05:30
"open_issues_count": 1,
"closed_issues_count": 3,
"open_merge_requests_count": 1,
"subscribed": false,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2017-08-17 22:00:37 +05:30
},
{
"id" : 8,
"name" : "documentation",
"color" : "#f0ad4e",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"description": "Issue about documentation",
2020-03-13 15:44:24 +05:30
"description_html": "Issue about documentation",
2017-08-17 22:00:37 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 2,
"subscribed": false,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": false
2017-08-17 22:00:37 +05:30
},
{
"id" : 9,
"color" : "#5cb85c",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"name" : "enhancement",
"description": "Enhancement proposal",
2020-03-13 15:44:24 +05:30
"description_html": "Enhancement proposal",
2017-08-17 22:00:37 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 1,
"subscribed": true,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2017-08-17 22:00:37 +05:30
}
2014-09-02 18:07:02 +05:30
]
```
2019-12-21 20:55:43 +05:30
## Get a single project label
Get a single label for a given project.
2020-04-08 14:13:33 +05:30
```plaintext
2019-12-21 20:55:43 +05:30
GET /projects/:id/labels/:label_id
```
| Attribute | Type | Required | Description |
| --------- | ------- | -------- | --------------------- |
2022-01-26 12:08:38 +05:30
| `id` | integer or string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2020-05-24 23:13:21 +05:30
| `label_id` | integer or string | yes | The ID or title of a project's label. |
2019-12-21 20:55:43 +05:30
| `include_ancestor_groups` | boolean | no | Include ancestor groups. Defaults to `true`. |
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/labels/bug"
2019-12-21 20:55:43 +05:30
```
Example response:
```json
{
"id" : 1,
"name" : "bug",
"color" : "#d9534f",
"text_color" : "#FFFFFF",
"description": "Bug reported by user",
2020-03-13 15:44:24 +05:30
"description_html": "Bug reported by user",
2019-12-21 20:55:43 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 1,
"subscribed": false,
"priority": 10,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2019-12-21 20:55:43 +05:30
}
```
2014-09-02 18:07:02 +05:30
## Create a new label
2016-04-02 18:10:28 +05:30
Creates a new label for the given repository with the given name and color.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
POST /projects/:id/labels
```
2016-06-02 11:05:42 +05:30
| Attribute | Type | Required | Description |
| ------------- | ------- | -------- | ---------------------------- |
2021-09-30 23:02:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2016-06-02 11:05:42 +05:30
| `name` | string | yes | The name of the label |
2021-09-30 23:02:18 +05:30
| `color` | string | yes | The color of the label given in 6-digit hex notation with leading '#' sign (for example, #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Color_keywords) |
2016-06-02 11:05:42 +05:30
| `description` | string | no | The description of the label |
2017-08-17 22:00:37 +05:30
| `priority` | integer | no | The priority of the label. Must be greater or equal than zero or `null` to remove the priority. |
2016-04-02 18:10:28 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --data "name=feature&color=#5843AD" --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/labels"
2016-04-02 18:10:28 +05:30
```
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
Example response:
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
```json
{
2017-08-17 22:00:37 +05:30
"id" : 10,
"name" : "feature",
"color" : "#5843AD",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"description":null,
2020-03-13 15:44:24 +05:30
"description_html":null,
2017-08-17 22:00:37 +05:30
"open_issues_count": 0,
"closed_issues_count": 0,
"open_merge_requests_count": 0,
"subscribed": false,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2016-04-02 18:10:28 +05:30
}
```
2014-09-02 18:07:02 +05:30
## Delete a label
2016-04-02 18:10:28 +05:30
Deletes a label with a given name.
2020-04-08 14:13:33 +05:30
```plaintext
2019-12-21 20:55:43 +05:30
DELETE /projects/:id/labels/:label_id
2014-09-02 18:07:02 +05:30
```
2016-06-02 11:05:42 +05:30
| Attribute | Type | Required | Description |
| --------- | ------- | -------- | --------------------- |
2022-01-26 12:08:38 +05:30
| `id` | integer or string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2019-12-21 20:55:43 +05:30
| `label_id` | integer or string | yes | The ID or title of a group's label. |
2014-09-02 18:07:02 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-21 20:55:43 +05:30
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/labels/bug"
2016-04-02 18:10:28 +05:30
```
2014-09-02 18:07:02 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
An older endpoint `DELETE /projects/:id/labels` with `name` in the parameters is still available, but deprecated.
2019-12-21 20:55:43 +05:30
2014-09-02 18:07:02 +05:30
## Edit an existing label
2016-04-02 18:10:28 +05:30
Updates an existing label with new name or new color. At least one parameter
2014-09-02 18:07:02 +05:30
is required, to update the label.
2020-04-08 14:13:33 +05:30
```plaintext
2019-12-21 20:55:43 +05:30
PUT /projects/:id/labels/:label_id
2014-09-02 18:07:02 +05:30
```
2016-06-02 11:05:42 +05:30
| Attribute | Type | Required | Description |
| --------------- | ------- | --------------------------------- | ------------------------------- |
2022-01-26 12:08:38 +05:30
| `id` | integer or string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2019-12-21 20:55:43 +05:30
| `label_id` | integer or string | yes | The ID or title of a group's label. |
2016-11-03 12:29:30 +05:30
| `new_name` | string | yes if `color` is not provided | The new name of the label |
2021-09-30 23:02:18 +05:30
| `color` | string | yes if `new_name` is not provided | The color of the label given in 6-digit hex notation with leading '#' sign (for example, #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Color_keywords) |
2016-06-02 11:05:42 +05:30
| `description` | string | no | The new description of the label |
2017-08-17 22:00:37 +05:30
| `priority` | integer | no | The new priority of the label. Must be greater or equal than zero or `null` to remove the priority. |
2020-03-13 15:44:24 +05:30
```shell
2021-09-04 01:27:46 +05:30
curl --request PUT --data "new_name=docs&color=#8E44AD&description=Documentation" \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/labels/documentation"
2016-04-02 18:10:28 +05:30
```
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
Example response:
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
```json
{
2017-08-17 22:00:37 +05:30
"id" : 8,
"name" : "docs",
"color" : "#8E44AD",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"description": "Documentation",
2020-03-13 15:44:24 +05:30
"description_html": "Documentation",
2017-08-17 22:00:37 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 2,
"subscribed": false,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2016-06-02 11:05:42 +05:30
}
```
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
An older endpoint `PUT /projects/:id/labels` with `name` or `label_id` in the parameters is still available, but deprecated.
2019-12-21 20:55:43 +05:30
2019-12-04 20:38:33 +05:30
## Promote a project label to a group label
2021-01-29 00:20:46 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/25218) in GitLab 12.3.
> - In [GitLab 13.6 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/231472), promoting a
> project label keeps that label's ID and changes it into a group label. Previously, promoting a
> project label created a new group label with a new ID and deleted the old label.
2019-12-04 20:38:33 +05:30
2021-01-29 00:20:46 +05:30
Promotes a project label to a group label. The label keeps its ID.
2019-12-04 20:38:33 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2019-12-21 20:55:43 +05:30
PUT /projects/:id/labels/:label_id/promote
2019-12-04 20:38:33 +05:30
```
| Attribute | Type | Required | Description |
| --------------- | ------- | --------------------------------- | ------------------------------- |
2022-01-26 12:08:38 +05:30
| `id` | integer or string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2019-12-21 20:55:43 +05:30
| `label_id` | integer or string | yes | The ID or title of a group's label. |
2019-12-04 20:38:33 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-21 20:55:43 +05:30
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/labels/documentation/promote"
2019-12-04 20:38:33 +05:30
```
Example response:
```json
{
"id" : 8,
"name" : "documentation",
"color" : "#8E44AD",
"description": "Documentation",
2020-03-13 15:44:24 +05:30
"description_html": "Documentation",
2019-12-04 20:38:33 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 2,
2021-09-04 01:27:46 +05:30
"subscribed": false
2019-12-04 20:38:33 +05:30
}
```
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
An older endpoint `PUT /projects/:id/labels/promote` with `name` in the parameters is still available, but deprecated.
2019-12-21 20:55:43 +05:30
2016-06-02 11:05:42 +05:30
## Subscribe to a label
2017-08-17 22:00:37 +05:30
Subscribes the authenticated user to a label to receive notifications.
If the user is already subscribed to the label, the status code `304`
is returned.
2016-06-02 11:05:42 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
POST /projects/:id/labels/:label_id/subscribe
2016-06-02 11:05:42 +05:30
```
| Attribute | Type | Required | Description |
| ---------- | ----------------- | -------- | ------------------------------------ |
2022-01-26 12:08:38 +05:30
| `id` | integer or string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2016-06-02 11:05:42 +05:30
| `label_id` | integer or string | yes | The ID or title of a project's label |
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/labels/1/subscribe"
2016-06-02 11:05:42 +05:30
```
Example response:
```json
{
2017-08-17 22:00:37 +05:30
"id" : 1,
"name" : "bug",
"color" : "#d9534f",
2019-07-07 11:18:12 +05:30
"text_color" : "#FFFFFF",
2017-08-17 22:00:37 +05:30
"description": "Bug reported by user",
2020-03-13 15:44:24 +05:30
"description_html": "Bug reported by user",
2017-08-17 22:00:37 +05:30
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 1,
"subscribed": true,
2019-07-07 11:18:12 +05:30
"priority": null,
2021-09-04 01:27:46 +05:30
"is_project_label": true
2016-06-02 11:05:42 +05:30
}
```
## Unsubscribe from a label
Unsubscribes the authenticated user from a label to not receive notifications
2017-08-17 22:00:37 +05:30
from it. If the user is not subscribed to the label, the
status code `304` is returned.
2016-06-02 11:05:42 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
POST /projects/:id/labels/:label_id/unsubscribe
2016-06-02 11:05:42 +05:30
```
| Attribute | Type | Required | Description |
| ---------- | ----------------- | -------- | ------------------------------------ |
2022-01-26 12:08:38 +05:30
| `id` | integer or string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) owned by the authenticated user |
2016-06-02 11:05:42 +05:30
| `label_id` | integer or string | yes | The ID or title of a project's label |
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/labels/1/unsubscribe"
2016-04-02 18:10:28 +05:30
```