Partially updates a custom field option.
Accounting integration fields (Xero, MYOB, QuickBooks, NetSuite, Business Central): only enabled can be changed. The text field cannot be modified.
Non-accounting-integration fields (MANUAL, PUBLIC_API): only text can be changed. The enabled field cannot be modified — delete and recreate options instead.
Security
BearerAuth
The new display text. Only permitted for options belonging to non-accounting-integration custom fields.
Example:"Project Beta"
PATCH
curl -i -X PATCH \
https://public.letsweel.com/v1/businesses/123/custom-fields/3fa85f64-5717-4562-b3fc-2c963f66afa6/options/3fa85f64-5717-4562-b3fc-2c963f66afa6 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"text": "Project Beta",
"enabled": false
}'OK
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" }