- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Create global custom field option
Developing
POST
https://api.weeek.net/public/v1/tm/custom-fields/{custom_field_id}/options
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
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
object
required
id
string
required
name
string
required
color
string
required
Example
{
"success": true,
"option": {
"id": "9df95e4a-5578-45f2-a387-06b6eaf256b0",
"name": "testOption",
"color": "#6C78F4"
}
}
Modified at 2025-01-15 13:29:00