list_application_interviews
Retrieve all interviews for a specific job application, with options to filter by status, date, interviewer, or location.
Instructions
List the interviews scheduled on a specific application. Same as list_interviews but scoped to one application (the application_id goes in the path, not as a filter). Cancelled interviews are included by default — use meeting_status=cancelled etc. to filter.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| application_id | Yes | ID of the application (candidate's submission to a job). Use list_applications to discover. | |
| page | No | Page number (default: 1) | |
| limit | No | Items per page (default: 20, max: 100) | |
| interviewer_ids | No | Comma-separated user IDs of participants | |
| organizer_ids | No | Comma-separated user IDs (the user who scheduled the interview) | |
| meeting_status | No | Comma-separated statuses: not_started, in_progress, ended, cancelled, candidate_no_show | |
| kind | No | Comma-separated kinds: one_on_one, panel, external | |
| location | No | Comma-separated locations: onsite, phone, zoom, google_meet, microsoft_teams, hackerrank | |
| ai_note_taker_enabled | No | Filter by AI note-taker flag | |
| start_time_after | No | Inclusive lower bound on start_time (ISO 8601) | |
| start_time_before | No | Inclusive upper bound on start_time (ISO 8601) | |
| created_after | No | Filter by created date (ISO 8601 inclusive) | |
| created_before | No | Filter by created date (ISO 8601 inclusive) | |
| updated_after | No | Filter by updated date (ISO 8601 inclusive) | |
| updated_before | No | Filter by updated date (ISO 8601 inclusive) | |
| sort_by | No | Sort field (default: created_at) | |
| sort_order | No | Sort direction (default: desc) |