v1
latestOpenAPI 3.1.02026-07-224239180.9 KBInterview Event
Get an interview event
Returns one scheduled interview event with its people, application, job, timing, and status details. The event must belong to the authenticated organization or the request returns not found.
get/v1/interview-events/{interviewEventId}
Path parameters
interviewEventIdstring required
an interview event 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:int_a1b2c3d4e5f64789a1b2c3d4e5f64789
Response
Success
Example response
{
"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"
}
]
}