clickup_remove_custom_field_value
Clear a custom field's value on a task using its field ID. Use when you need to empty a field without deleting the field definition.
Instructions
Clear a Custom Field's value on a task.
Calls DELETE /task/{task_id}/field/{field_id}. This removes the value
stored on the task only — it does NOT delete the field definition or any
drop_down/labels options from the field's configuration.
When to Use:
To empty a single field on a task (e.g. unset a drop_down or clear a date).
When NOT to Use:
To change a value — use
clickup_set_custom_field_value.To delete the field itself — that is a ClickApp/UI action, not this API.
Returns: A confirmation string (the endpoint returns an empty body on success).
Examples:
params = {"task_id": "9hz", "field_id": ""}
params = {"task_id": "ABC-123", "field_id": "", "custom_task_ids": true, "team_id": "9007200144"}
Error Handling:
404 means the task or field_id is wrong; if custom_task_ids=true you must
also pass team_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |