Skip to main content

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.

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" }.
{
  "fields": {
    "stage": "field_option_new"
  }
}

Returned shape

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

Example response

{
  "fields": {
    "stage": {
      "optionId": "field_option_new",
      "value": "new",
      "label": "New",
      "color": "#3B82F6"
    }
  }
}