Skip to main content

ClientFieldOptions

Options for choice-type client fields.

allow_otherboolean

Whether to allow a free-text "other" option.

choices object[]

The list of choices.

  • Array [
  • idstring

    Unique identifier for the choice.

    labelstringrequired

    The display label for the choice.

  • ]
  • ClientFieldOptions
    {
    "allow_other": false,
    "choices": [
    {
    "id": "opt_a1b2c3d4e5f6",
    "label": "Option A"
    }
    ]
    }