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

# Create board label

> Create a new board label.

Creates a new label for the active organization.

## Request body

<ParamField body="name" type="string" required>
  Label name.
</ParamField>

<ParamField body="color" type="string" required>
  Hex color string, for example `#EF4444`.
</ParamField>

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

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

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