Skip to main content
PATCH
/
api
/
v1
/
labels
/
{id}
Update label
curl --request PATCH \
  --url https://api.getarca.app/api/v1/labels/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "color": "<string>"
}
'
{
  "id": 5,
  "workspace_id": 3,
  "name": "Tech Debt",
  "color": "orange",
  "created_at": "2026-04-11T10:45:00.000Z"
}
Requires the workspaces:write scope. Only workspace owners and admins can update labels.

Path parameters

id
string
required
The numeric label ID.

Request body

All fields are optional. Send only the fields you want to update.
name
string
New label name.
color
string
New color value.

Response

Returns the full updated label object.
id
number
required
Label identifier.
workspace_id
number
required
Workspace this label belongs to.
name
string
required
Label name.
color
string | null
Color value.
created_at
string
required
UTC ISO-8601 creation timestamp.
{
  "id": 5,
  "workspace_id": 3,
  "name": "Tech Debt",
  "color": "orange",
  "created_at": "2026-04-11T10:45:00.000Z"
}