The unique identifier of the webhook subscription to update.
FL3XX API (2.0.0)
https://test.fl3xx.com/
Airports
Access comprehensive airport information.
Business Value
- Filter airports by various criteria including ICAO, IATA, FAA codes and local identifiers
- Support high-performance applications with optimized data retrieval
Use Cases
- Filter airports by specific codes for targeted data retrieval
- Integrate airport data into flight planning and scheduling systems
- Build airport selection interfaces with efficient pagination
Airport Fuel Prices
Manage and optimize airport fuel pricing data for your organization. These endpoints enable operators to efficiently update, remove, and bulk-manage fuel prices, supporting streamlined fuel order workflows and provider management.
Business Value
- Ensure accurate and up-to-date fuel pricing for all airport operations.
- Reduce manual effort and errors by enabling bulk updates and deletions.
- Support cost control and negotiation with providers through transparent pricing data.
- Enhance operational planning and financial forecasting with reliable fuel cost data.
Use Cases
Update fuel prices for a specific airport to reflect new agreements or market changes.
Remove outdated or incorrect fuel prices for compliance and data integrity.
Perform bulk deletions to quickly adapt to network-wide pricing changes.
Integrate with internal systems to automate fuel price management and reporting.
Note:
The data managed by the Airport Fuel Prices endpoints is strictly bound to the context of the operator associated with the calling authentication token. All operations—creating, updating, or deleting airport fuel prices—apply only to the operator for which the provided token is valid.
Webhooks
Manage webhook subscriptions for near real-time event notifications. These endpoints enable partners to create, manage, and monitor webhook subscriptions for receiving flight-related events and updates.
Business Value
- Receive near real-time notifications for flight events and updates.
- Automate integration workflows with external systems.
- Monitor flight operations and passenger changes in near real-time.
- Reduce polling overhead by using event-driven architecture.
Use Cases
- Subscribe to flight updates to sync data with external booking systems.
- Monitor passenger count changes for catering and ground service coordination.
- Track aircraft changes for maintenance and operational planning.
- Receive notifications for flight cancellations and time updates.
Available Event Types:
FLIGHT_CREATE
: New flight creationFLIGHT_CANCEL
: Flight cancellationFLIGHT_TIME_UPDATE
: Flight time changesFLIGHT_AIRCRAFT_UPDATE
: Aircraft assignment changesFLIGHT_AIRPORT_UPDATE
: Airport(s) changesFLIGHT_POST_FLIGHT_STATUS
: Post-flight status updatesFLIGHT_MOVEMENT_UPDATE
: Flight movement updatesFLIGHT_PAX_COUNT_UPDATE
: Passenger count changesFLIGHT_PAX_LIST_UPDATE
: Passenger list changes (e.g. new passengers, updated list, passenger document changes, etc.)
Request
Update the callback URL for an existing webhook subscription.
Features:
- Validates new callback URL format, only https is supported
- Updates subscription status to active or inactive
Example Use Case: An operations manager needs to change the webhook endpoint URL after migrating to a new server. Using this endpoint, they can update the callback URL without recreating the entire subscription.
The new URL where webhook notifications will be sent. Must be a valid HTTPS URL.
- Test Server
https://test.fl3xx.com/api/v2/webhooks/subscriptions/{subscriptionId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://test.fl3xx.com/api/v2/webhooks/subscriptions/webhook-sub-12345 \
-H 'Content-Type: application/json' \
-H 'X-Api-Client-Id: YOUR_API_KEY_HERE' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"callbackUrl": "https://new-example.com/webhooks",
"status": "ACTIVE"
}'
Successfully updated webhook subscription
The URL where webhook notifications will be sent.
Status of the webhook subscription indicating whether it is active and receiving notifications or inactive.
The date and time when the webhook subscription was created.
The date and time when the webhook subscription was last updated.
{ "id": "webhook-sub-12345", "event": "FLIGHT_UPDATE", "callbackUrl": "https://example.com/webhooks", "status": "ACTIVE", "createdAtDateTime": "2024-01-15T10:30:00.000Z", "updatedAtDateTime": "2024-01-15T10:30:00.000Z", "expirationDateTime": "2024-02-15T10:30:00.000Z" }
Request
Delete a webhook subscription and stop receiving notifications for the associated event type.
Features:
- Immediately stops webhook deliveries
Example Use Case: An operations manager needs to stop receiving flight update notifications after completing a system migration. Using this endpoint, they can cleanly remove the webhook subscription.
- Test Server
https://test.fl3xx.com/api/v2/webhooks/subscriptions/{subscriptionId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://test.fl3xx.com/api/v2/webhooks/subscriptions/webhook-sub-12345 \
-H 'X-Api-Client-Id: YOUR_API_KEY_HERE' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
Request
Renew an existing webhook subscription to extend its expiration date.
Features:
- Extends subscription expiration by 1 month from current expiration date.
- Subscriptions can only be renewed 5 days before expiration.
Example Use Case: An operations manager wants to continue receiving webhook notifications for an existing subscription. Using this endpoint, they can extend the subscription without recreating it.
- Test Server
https://test.fl3xx.com/api/v2/webhooks/subscriptions/{subscriptionId}/renewals
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://test.fl3xx.com/api/v2/webhooks/subscriptions/webhook-sub-12345/renewals \
-H 'X-Api-Client-Id: YOUR_API_KEY_HERE' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
Successfully renewed webhook subscription
The URL where webhook notifications will be sent.
Status of the webhook subscription indicating whether it is active and receiving notifications or inactive.
The date and time when the webhook subscription was created.
The date and time when the webhook subscription was last updated.
{ "id": "webhook-sub-12345", "event": "FLIGHT_UPDATE", "callbackUrl": "https://example.com/webhooks", "status": "ACTIVE", "createdAtDateTime": "2024-01-15T10:30:00.000Z", "updatedAtDateTime": "2024-01-15T10:30:00.000Z", "expirationDateTime": "2024-02-15T10:30:00.000Z" }