v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
Interview Event

interviewEvent.list

Lists interview events associated with an interview schedule.

See the Pagination and Incremental Synchronization guide for detailed usage examples.

Requires the interviewsRead permission.

post/interviewEvent.list

Request body

interviewScheduleIdstring uuid required

The unique ID of the interview schedule, for which to list interview events

expandstring[] nullable

Choose to expand the result and include additional data for related objects.

cursorstring nullable

The pagination cursor. Use the nextCursor value from a previous response to fetch the next page.

limitnumber nullable

The maximum number of items to return per page. Maximum is 100.

syncTokenstring nullable

A sync token to retrieve only events updated since the last sync. Obtained from a previous list response.

createdAfterinteger nullable

Return only events created after this date, expressed as milliseconds since the Unix epoch.

Example request

{
  "interviewScheduleId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
  "cursor": "G8",
  "limit": 25,
  "syncToken": "jYnEBmjzR",
  "createdAfter": 1659979196538
}

Response

Responses from the interviewEvent.list endpoint

OR

Example response

{
  "success": true,
  "results": [
    {
      "id": "3ae2b801-19f6-41ef-ad28-214bd731948f",
      "interviewId": "ff6c7d9d-71e3-4c9c-88b1-28824980c276",
      "interviewScheduleId": "9d34f544-c150-4d70-91c4-e8b0b4a72846",
      "interviewerUserIds": [
        "caea4d97-331d-46b1-a8e3-6b821c2214ef"
      ],
      "interviewers": [
        {
          "id": "caea4d97-331d-46b1-a8e3-6b821c2214ef",
          "firstName": "Lindsay",
          "lastName": "Bluth",
          "email": "lindsay@bluth.com",
          "globalRole": "Organization Admin",
          "isEnabled": true,
          "updatedAt": "2026-04-25T02:46:46.230Z",
          "trainingRole": null,
          "interviewerPool": null,
          "isFeedbackRequired": true
        }
      ],
      "createdAt": "2026-04-25T02:46:41.817Z",
      "updatedAt": "2026-04-25T02:46:46.230Z",
      "startTime": "2026-04-26T15:00:00.000Z",
      "endTime": "2026-04-26T16:00:00.000Z",
      "feedbackLink": "https://app.ashbyhq.com/interview-briefings/4736b6d2-5c97-43a6-a7c6-0228bf079411/feedback",
      "location": "Google Meet",
      "meetingLink": "https://meet.google.com/abc-defg-hij",
      "interviewerCalendarEventId": null,
      "hasSubmittedFeedback": false
    }
  ],
  "moreDataAvailable": false,
  "syncToken": "sync-token-example"
}