v1

latestOpenAPI 3.1.02026-07-224239180.9 KB
Interview 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

idstring required

Canonical interview event ID (int_ followed by 32 lowercase hexadecimal UUID characters).

schedule_idstring required

Canonical schedule ID (sch_ followed by 32 lowercase hexadecimal UUID characters).

namestring required
start_atstring date-time required

ISO 8601 timestamp.

end_atstring date-time required

ISO 8601 timestamp.

timezonestring required
status'SCHEDULED' | 'COMPLETED' | 'CANCELED' required
video_meeting_urlstring uri nullable required
is_debriefboolean required
created_atstring date-time required

ISO 8601 timestamp.

updated_atstring date-time required

ISO 8601 timestamp.

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"
    }
  ]
}