> ## Documentation Index
> Fetch the complete documentation index at: https://docs.breakcold.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Select

> Use select attributes in the Breakcold API.

## Attribute type

`select`

## Use it for

A single option from a configured list, such as status, stage, source, or priority.

## Request value

Send an option ID string, or `{ "optionId": "field_option_id" }`.

```json theme={null}
{
  "fields": {
    "stage": "field_option_new"
  }
}
```

## Returned shape

Returns `{ "optionId", "value", "label", "color" }` for the selected option.

## Example response

```json theme={null}
{
  "fields": {
    "stage": {
      "optionId": "field_option_new",
      "value": "new",
      "label": "New",
      "color": "#3B82F6"
    }
  }
}
```
