- 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
PUT
https://api.weeek.net/public/v1/tm/custom-fields/{id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Body Params application/json
name
string | null
optional
<= 255 characters
config
object | null
optional
type
enum<string>
required
Allowed values:
switchcheckbox
Example
{
"name": "string",
"config": {
"type": "switch"
}
}
Responses
🟢200Success
application/json
Body
success
boolean
required
customField
object (CustomField)
required
id
string <uuid>
read-onlyoptional
name
string | null
optional
<= 255 characters
type
enum<string>
required
Allowed values:
textbooleandatetimeselectmultiselectmembercontactlinkapproval
config
object | null
optional
options
array[object (CustomFieldOption) {3}]
required
Example
{
"success": true,
"customField": {
"id": "9df95a6c-3cfe-4017-b91f-f9b2de21bf93",
"name": "test",
"type": "text"
}
}
Modified at 2025-02-25 09:27:38