{
"completed": true
}
{
"id": "task-abc123",
"subject": "Follow up call",
"completed": true,
"completedAt": "2024-12-20T14:30:00Z"
}
Tasks
Update task
Update or complete a task
PATCH
/
tasks
/
{taskId}
{
"completed": true
}
{
"id": "task-abc123",
"subject": "Follow up call",
"completed": true,
"completedAt": "2024-12-20T14:30:00Z"
}
Your Implementation Required
This endpoint must be implemented on your server
Path Parameters
string
required
The task’s CRM ID
Request
boolean
Set to
true to mark task as completed{
"completed": true
}
Response
Return the updated task object.string
required
Task CRM ID
boolean
Updated completion status
string
Completion timestamp (auto-set when completed)
{
"id": "task-abc123",
"subject": "Follow up call",
"completed": true,
"completedAt": "2024-12-20T14:30:00Z"
}
Auto-set
completedAt timestamp when completed changes to true.