# Create a custom field option

Adds a new option to a `LIST` type custom field.
Not permitted for `FREE_TEXT` custom fields or custom fields created by accounting integrations.

Endpoint: POST /v1/businesses/{client_id}/custom-fields/{custom_field_id}/options
Version: v1
Security: BearerAuth

## Path parameters:

  - `client_id` (integer, required)
    The ID of the business.

  - `custom_field_id` (string, required)
    The ID of the custom field.

## Request fields (application/json):

  - `text` (string, required)
    The display text for this option.
    Example: Project Alpha

## Response 201 fields (application/json):

  - `id` (string)
    The unique identifier for this option.
    Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6

  - `text` (string)
    The display text of this option.
    Example: Project Alpha

  - `enabled` (boolean)
    Whether this option is available for selection.
    Example: true

  - `created` (string)
    The date and time when this option was created.
    Example: 2024-01-15T09:00:00Z

  - `updated` (string)
    The date and time when this option was last updated.
    Example: 2024-01-15T09:00:00Z

