# Get crew qualifications Retrieve crew qualifications with pagination and filtering capabilities. - Filter by crew ID (required) - Paginated results An operations manager needs to retrieve all qualifications for a specific crew member to verify compliance status and upcoming expiration dates. Endpoint: GET /api/external/crew-qualifications Version: 1.5.0 Security: API_AUTHENTICATION ## Query parameters: - `filter` (string, required) Filter by crewId (required). - with operator (equal) - Example: Example: "crewId,EQ,12345" - `limit` (integer) Maximum number of records to return. Example: 20 - `offset` (integer) Number of records to skip before starting to return results. ## Response 200 fields (application/json): - `data` (array) The list of crew qualifications for the current page. - `data.id` (string) Unique identifier for the crew qualification Example: "qual-12345" - `data.crewId` (string) Unique identifier of the crew member Example: "crew-67890" - `data.qualificationId` (string) Unique identifier of the qualification type Example: "qual-type-12345" - `data.licenseNumber` (string) License or certificate number Example: "ATP-123456" - `data.issuingAuthority` (string) Authority that issued the license or certificate Example: "FAA" - `data.country` (string) Country where the license was issued (ISO 3166-1 alpha-3) Example: "AUT" - `data.issueDate` (string) Date when the license was issued Example: "2023-01-15" - `data.expiryDate` (string) Date when the license expires Example: "2025-01-15" - `data.trainingStartDate` (string) Date when training for this qualification started Example: "2022-12-01" - `data.notes` (string) Additional notes or comments about the qualification Example: "Completed simulator training" - `data.isPilotInCommand` (boolean) Whether this qualification allows pilot-in-command privileges Example: true - `data.baseMonth` (string) Base month for qualification calculations Enum: "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" - `data.document` (object) - `data.document.id` (integer) Document ID Example: 66325 - `data.document.uuid` (string) Document UUID Example: "2342343423423423423ASS32" - `data.document.originalName` (string) Original name of the document Example: "fil3.pdf" - `data.document.fileSize` (integer) File size Example: 652154 - `data.document.creationDate` (string) Date created Example: "2024-11-27T16:56:40Z" - `data.createdAtDateTime` (string) Date and time when the qualification was created Example: "2024-01-15T10:30:00.000Z" - `data.updatedAtDateTime` (string) Date and time when the qualification was last updated Example: "2024-01-15T10:30:00.000Z" - `pagination` (object) Pagination details - `pagination.offset` (integer) Number of records skipped - `pagination.limit` (integer) Maximum number of records returned Example: 10 - `pagination.totalItems` (integer) Total number of items available Example: 3 - `pagination.sortItems` (array) List of fields used for sorting Example: [] - `pagination.filters` (array) - `pagination.filters.field` (string) Field name to filter by Example: "expenseDate" - `pagination.filters.operator` (string) Filter operator Example: "BTW" - `pagination.filters.value` (string) Filter value Example: "2024-08-28/2025-02-24"