v1
latestOpenAPI 3.1.02026-07-224239180.9 KBScheduling Task
Update a scheduling task
Updates the supplied assignee, urgency, queue, tags, debrief requirement, or meeting location for a scheduling task. Omitted fields are preserved; null clears the assignee, queue, or meeting location, while supplying tags replaces the task's tag list. An empty PATCH body is rejected.
patch/v1/tasks/{taskId}
Path parameters
taskIdstring required
a task ID. Accepts the canonical prefixed compact UUID, a prefixed dashed UUID, a bare dashed UUID, or a bare compact UUID; input is case-insensitive.
Example:tsk_a1b2c3d4e5f64789a1b2c3d4e5f64789
Request body
Example request
{
"assignee_id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"queue_id": "que_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"meeting_location": {
"host": {
"host_employee_id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
}
}Response
Success
Example response
{
"id": "tsk_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"application": {
"id": "app_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"candidate": {
"id": "can_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"job": {
"id": "job_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
},
"job_stage": {
"id": "stg_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"assignee": {
"id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"queue_id": "que_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"notes": [
{
"author": {
"id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
}
]
}