v1

latestOpenAPI 3.1.02026-07-224239180.9 KB
Interview Event

Search interview events

Flat scheduled interview-event rows for BI exports and person/candidate/date filtering.

get/v1/interview-events

Query parameters

cursorstring

Opaque pagination cursor from the previous page's pagination.next_cursor, bound to the same query filters.

Opaque pagination cursor from the previous page's pagination.next_cursor, bound to the same query filters.

limitinteger

Page size. Must be between 1 and 100; defaults to 25.

Page size. Must be between 1 and 100; defaults to 25.

idsstring[] nullable

Comma-separated list of IDs; maximum 100 values.

Comma-separated list of IDs; maximum 100 values.

[
  "int_a1b2c3d4e5f64789a1b2c3d4e5f64789"
]
start_at_gtestring date-time

Matches interview events starting at or after this timestamp; combines with other filters using AND.

Matches interview events starting at or after this timestamp; combines with other filters using AND.

start_at_ltestring date-time

Matches interview events starting before this timestamp; combines with other filters using AND.

Matches interview events starting before this timestamp; combines with other filters using AND.

interviewer_idsstring[] nullable

Matches events with any listed interviewer; combines with other filters using AND.

Matches events with any listed interviewer; combines with other filters using AND.

[
  "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
]
candidate_idsstring[] nullable

Matches events for any listed candidate; combines with other filters using AND.

Matches events for any listed candidate; combines with other filters using AND.

[
  "can_a1b2c3d4e5f64789a1b2c3d4e5f64789"
]
application_idsstring[] nullable

Matches events for any listed application; combines with other filters using AND.

Matches events for any listed application; combines with other filters using AND.

[
  "app_a1b2c3d4e5f64789a1b2c3d4e5f64789"
]
job_idsstring[] nullable

Matches events for any listed job; combines with other filters using AND.

Matches events for any listed job; combines with other filters using AND.

[
  "job_a1b2c3d4e5f64789a1b2c3d4e5f64789"
]
statusesstring[] nullable

Matches events with any listed status; combines with other filters using AND.

Matches events with any listed status; combines with other filters using AND.

created_at_gtestring date-time

Filters records created at or after this timestamp.

Filters records created at or after this timestamp.

created_at_ltestring date-time

Filters records created at or before this timestamp.

Filters records created at or before this timestamp.

updated_at_gtestring date-time

Filters records updated at or after this timestamp.

Filters records updated at or after this timestamp.

updated_at_ltestring date-time

Filters records updated at or before this timestamp.

Filters records updated at or before this timestamp.

Response

Success

Example response

{
  "data": [
    {
      "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"
        }
      ]
    }
  ]
}