clickup_set_custom_field_value
Set custom field values on ClickUp tasks to update task properties and maintain accurate project data through direct API integration.
Instructions
Set a value for a custom field on a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| custom_field_id | Yes | Custom field ID | |
| task_id | Yes | ClickUp task ID | |
| value | Yes | Value to set for the custom field. Type depends on the custom field type. |
Input Schema (JSON Schema)
{
"properties": {
"custom_field_id": {
"description": "Custom field ID",
"type": "string"
},
"task_id": {
"description": "ClickUp task ID",
"type": "string"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"items": {},
"type": "array"
},
{
"additionalProperties": {},
"type": "object"
}
],
"description": "Value to set for the custom field. Type depends on the custom field type."
}
},
"required": [
"task_id",
"custom_field_id",
"value"
],
"type": "object"
}