# Get a crew qualification by ID Retrieve detailed information about a specific crew qualification including associated documents. - Returns complete qualification details including document references - Includes creation and update timestamps An operations manager needs to review the complete details of a specific qualification, including any uploaded documents, to verify compliance or prepare for audits. Endpoint: GET /api/external/crew-qualifications/{crewQualificationId} Version: 1.5.0 Security: API_AUTHENTICATION ## Path parameters: - `crewQualificationId` (string, required) The unique identifier of the crew qualification to retrieve Example: "qual-12345" ## Response 200 fields (application/json): - `id` (string) Unique identifier for the crew qualification Example: "qual-12345" - `crewId` (string) Unique identifier of the crew member Example: "crew-67890" - `qualificationId` (string) Unique identifier of the qualification type Example: "qual-type-12345" - `licenseNumber` (string) License or certificate number Example: "ATP-123456" - `issuingAuthority` (string) Authority that issued the license or certificate Example: "FAA" - `country` (string) Country where the license was issued (ISO 3166-1 alpha-3) Example: "AUT" - `issueDate` (string) Date when the license was issued Example: "2023-01-15" - `expiryDate` (string) Date when the license expires Example: "2025-01-15" - `trainingStartDate` (string) Date when training for this qualification started Example: "2022-12-01" - `notes` (string) Additional notes or comments about the qualification Example: "Completed simulator training" - `isPilotInCommand` (boolean) Whether this qualification allows pilot-in-command privileges Example: true - `baseMonth` (string) Base month for qualification calculations Enum: "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" - `document` (object) - `document.id` (integer) Document ID Example: 66325 - `document.uuid` (string) Document UUID Example: "2342343423423423423ASS32" - `document.originalName` (string) Original name of the document Example: "fil3.pdf" - `document.fileSize` (integer) File size Example: 652154 - `document.creationDate` (string) Date created Example: "2024-11-27T16:56:40Z" - `createdAtDateTime` (string) Date and time when the qualification was created Example: "2024-01-15T10:30:00.000Z" - `updatedAtDateTime` (string) Date and time when the qualification was last updated Example: "2024-01-15T10:30:00.000Z"