Adds a new option to a LIST type custom field.
Not permitted for FREE_TEXT custom fields or custom fields created by accounting integrations.
Security
BearerAuth
POST
curl -i -X POST \
https://public.letsweel.com/v1/businesses/123/custom-fields/3fa85f64-5717-4562-b3fc-2c963f66afa6/options \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"text": "Project Alpha"
}'Created
The unique identifier for this option.
Example:"3fa85f64-5717-4562-b3fc-2c963f66afa6"
The date and time when this option was created.
Example:"2024-01-15T09:00:00Z"
Response
{ "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "text": "Project Alpha", "enabled": true, "created": "2024-01-15T09:00:00Z", "updated": "2024-01-15T09:00:00Z" }