- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Update global custom field option
Developing
PUT
https://api.weeek.net/public/v1/tm/custom-fields/{custom_field_id}/options/{id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
custom_field_id
string
required
id
string
required
Body Params application/json
name
string
required
<= 255 characters
color
enum<string>
required
Allowed values:
bluelight_bluedark_purplepurpledark_pinkpinklight_pinkredturquoisegreenlight_greendark_yellowyellow
Example
{
"name": "string",
"color": "blue"
}
Responses
🟢200Success
application/json
Body
success
boolean
required
option
object (CustomFieldOption)
required
id
string <uuid>
read-onlyoptional
name
string
required
<= 255 characters
color
enum<string>
required
Allowed values:
bluelight_bluedark_purplepurpledark_pinkpinklight_pinkreddark_greengreenlight_greendark_yellow
Example
{
"success": true,
"option": {
"id": "9df9630d-d164-421a-b3b5-416561c39808",
"name": "pink",
"color": "#FF6AA9"
}
}
Modified at 2025-01-15 13:29:00