Skip to main content
PUT
/
boards
/
labels
/
{id}
Update board label
curl --request PUT \
  --url https://api.surefeedback.com/api/v1/boards/labels/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "color": "<string>",
  "icon_name": "<string>",
  "description": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "label-001",
    "name": "Critical Bug",
    "color": "#DC2626"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt

Use this file to discover all available pages before exploring further.

Updates an existing organization label.

Path parameters

id
string
required
UUID of the label.

Request body

name
string
Updated label name.
color
string
Updated hex color.
icon_name
string
Updated icon name.
description
string
Updated label description.
{
  "success": true,
  "data": {
    "id": "label-001",
    "name": "Critical Bug",
    "color": "#DC2626"
  }
}