# 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/v2/external/crew-qualifications Version: 2.0.0 Security: X-Api-Client-Id, X-Auth-Token ## 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 webhook deliveries for the current page. - `data.id` (string) Unique identifier for the webhook delivery attempt. Example: "delivery-12345" - `data.resourceType` (string) The type of resource that triggered the webhook delivery. Enum: "FLIGHT" - `data.resourceId` (string) The unique identifier of the resource that triggered the webhook delivery. Example: "flight-67890" - `data.event` (string) The event type that triggered this webhook delivery. - is a main group for when the more than one of the following events are triggered: - FLIGHT_CREATE - FLIGHT_CANCEL - FLIGHT_TIME_UPDATE - FLIGHT_AIRCRAFT_UPDATE - FLIGHT_AIRPORT_UPDATE - FLIGHT_POST_FLIGHT_STATUS - FLIGHT_MOVEMENT_UPDATE - is a main group for when the more than one of the following events are triggered: - FLIGHT_PAX_COUNT_UPDATE - FLIGHT_PAX_LIST_UPDATE Enum: "FLIGHT_CREATE", "FLIGHT_CANCEL", "FLIGHT_TIME_UPDATE", "FLIGHT_AIRCRAFT_UPDATE", "FLIGHT_AIRPORT_UPDATE", "FLIGHT_POST_FLIGHT_STATUS", "FLIGHT_MOVEMENT_UPDATE", "FLIGHT_PAX_COUNT_UPDATE", "FLIGHT_PAX_LIST_UPDATE", "FLIGHT_UPDATE", "FLIGHT_PASSENGER_UPDATE" - `data.status` (string) The delivery status indicating whether the webhook was successfully delivered. Enum: "FAILED" - `data.completedAtDateTime` (string) The date and time (UTC) when the webhook delivery attempt was completed. 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: 20 - `pagination.totalItems` (integer) Total number of items available Example: 150 - `pagination.sortItems` (array) List of fields used for sorting Example: ["issueDate desc"] - `pagination.filters` (array) List of applied filters - `pagination.filters.field` (string) Field name to filter by Example: "issueDate" - `pagination.filters.operator` (string) Filter operator Example: "gte" - `pagination.filters.value` (string) Filter value Example: "2024-01-01T00:00:00.000Z"