v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
CustomFields > Option

Creates an Option

Creates an Option

post/api/2026-07-01/resources/custom_fields/options

Request body

labelstring required

Title for option

is_activeboolean

Flag to make the option available

field_idstring required

Custom Fields identifier

Example request

{
  "label": "T-shirt size",
  "is_active": true,
  "field_id": "2"
}

Response

CREATED

idstring required

Option identifier

labelstring

Title for option

valuestring

Option value

is_activeboolean

Flag to make the option available

field_idstring

Custom Fields identifier

Example response

{
  "id": "1",
  "label": "T-shirt size",
  "value": "L",
  "is_active": true,
  "field_id": "2"
}