Skip to content

Promote a label to a group label

Deprecated
PUT
/api/v4/projects/{id}/labels/promote

Added in GitLab 12.3 and deprecated in GitLab 12.4. Use PUT /projects/:id/labels/:name/promote instead.

id
required
One of:
string

The ID or URL-encoded path of the project

Media type application/json
object
name
required

The name of the label to be promoted

string
nullable
Example generated
{
"name": "example"
}

OK

Media type application/json
object
id
integer format: int64
name
string
description
string
text_color
string
description_html
string
color
string
archived
boolean
open_issues_count
integer
closed_issues_count
integer
open_merge_requests_count
integer
subscribed
boolean
Example
{
"id": 1,
"name": "bug",
"description": "Bug reported by user",
"text_color": "#FFFFFF",
"description_html": "<p>Bug reported by user</p>",
"color": "#FF0000",
"archived": false,
"open_issues_count": 1,
"closed_issues_count": 0,
"open_merge_requests_count": 1,
"subscribed": false
}

Bad Request

Not Found