set_task_custom_field_value
Set a custom field value on a task, using the appropriate data type for text, number, dropdown, labels, date, or users fields. Look up the field type first with a get custom fields tool.
Instructions
Set (or overwrite) a custom field's value on a task. The value shape depends on the field type (text/number primitive, drop_down option id, labels array, date epoch ms, users array). Look up the type with a get_*_custom_fields tool first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ID of the task to set the field on. | |
| field_id | Yes | ID of the custom field. | |
| value | No | Value to set, in the shape required by the field's type (see the tool description). | |
| value_options | No | Optional extra options for the value, e.g. { time: true } to include a time component for date fields. | |
| custom_task_ids | No | Set true to treat `task_id` as a custom task ID instead of a native ClickUp ID. Requires `team_id`. | |
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. |