v1
latestOpenAPI 3.1.02026-07-224239180.9 KBSchedule
Get a schedule
Returns a schedule group and the interview events it contains, including their timing and participants. The schedule must belong to the authenticated organization or the request returns not found.
get/v1/schedules/{scheduleId}
Path parameters
scheduleIdstring required
a schedule 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:sch_a1b2c3d4e5f64789a1b2c3d4e5f64789
Response
Success
Example response
{
"id": "sch_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"application": {
"id": "app_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"candidate": {
"id": "can_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"job": {
"id": "job_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"stage": {
"id": "stg_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
},
"interviews": [
{
"id": "int_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"schedule_id": "sch_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"application": {
"id": "app_a1b2c3d4e5f64789a1b2c3d4e5f64789",
"candidate": {
"id": "can_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"job": {
"id": "job_a1b2c3d4e5f64789a1b2c3d4e5f64789"
},
"stage": {
"id": "stg_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
},
"interviewers": [
{
"id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
]
}
],
"task": {
"id": "tsk_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
}