set_custom_field_value
Set the value of a custom field on a ClickUp task. Supports text, number, dropdown, labels, date, and user field types.
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 → the option id; labels → array of option ids; date → epoch milliseconds; users → array of user ids. Look up the field type first with one of the get_*_custom_fields tools.
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 (from a get_*_custom_fields tool). | |
| value | No | The 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 when `task_id` is 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. |