Skip to main content
POST
/
repos
/
{owner}
/
{repo}
/
issues
/
{index}
/
labels
Add labels to an issue
curl --request POST \
  --url https://gogs.example.com/api/v1/repos/{owner}/{repo}/issues/{index}/labels \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "labels": [
    123
  ]
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "color": "<string>",
    "url": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Personal access token. Use format: token {YOUR_ACCESS_TOKEN}

Path Parameters

owner
string
required

Repository owner

repo
string
required

Repository name

index
string
required

Issue index

Body

application/json
labels
integer[]
required

Response

Success

id
integer
name
string
color
string
url
string