update_task
Update an existing task by modifying its title, start date, description, task type, or owner. Unspecified fields remain unchanged.
Instructions
Update an existing task via partial POST to /v1/tasks/{id}.
Only non-None fields are forwarded; omitted fields are preserved.
task_type_id is the integer ID from list_task_types; omit to keep
current type. description accepts Markdown.
NOTE: marking a task complete is not supported by the
Recruit CRM API on this endpoint — the status field is silently
ignored (see CLAUDE.md). Delete the task or use the RCRM UI instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ||
| title | No | ||
| start_date | No | ||
| description | No | ||
| task_type_id | No | ||
| owner_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | ||
| id | Yes | ||
| title | No | ||
| url | No |