Subscribe to a project label
POST
/api/v4/projects/{id}/labels/{subscribable_id}/subscribe
Subscribes the currently authenticated user to a specified project label. They will receive notifications on changes to this item.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” id
required
string
The project ID
subscribable_id
required
string
The ID of a resource
Responses
Section titled “ Responses ”Created
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
priority
integer
is_project_label
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, "priority": 10}Bad Request
Not Found