Sign in

Update task

documented

Update a task.

PATCH /v2/tasks/{task_id}Tasksno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.attio.com/v2/tasks/{{$task_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"data": {"deadline_at": "{{$deadline_at}}", "is_completed": {{$is_completed}}, "linked_records": [ {"target_object": "people", "target_record_id": "{{$linked_record_id}}"} ], "assignees": [ {"referenced_actor_type": "workspace-member", "referenced_actor_id": "{{$assignee_id}}"} ] }}' }
Update task · Attio · OpenIntegrations