> ## 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.

# Update board label

> Update an existing board label.

Updates an existing organization label.

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the label.
</ParamField>

## Request body

<ParamField body="name" type="string">
  Updated label name.
</ParamField>

<ParamField body="color" type="string">
  Updated hex color.
</ParamField>

<ParamField body="icon_name" type="string">
  Updated icon name.
</ParamField>

<ParamField body="description" type="string">
  Updated label description.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "label-001",
      "name": "Critical Bug",
      "color": "#DC2626"
    }
  }
  ```
</ResponseExample>
