# Get webhook subscriptions Retrieves all webhook subscriptions for the authenticated partner and operator. Features: - Returns active and inactive webhook subscriptions - Filtered by partner and operator context For more information on setting up and managing webhooks, see the Event Notifications (Webhook) Guide. Endpoint: GET /api/v2/webhooks/subscriptions Version: 2.4.0 Security: X-Api-Client-Id, X-Auth-Token ## Response 200 fields (application/json): - `id` (string) Unique identifier for the webhook subscription. Example: "webhook-sub-12345" - `event` (string) The event type that this subscription is listening for. Example: "FLIGHT_UPDATE" - `callbackUrl` (string) The URL where webhook notifications will be sent. Example: "https://example.com/webhooks" - `status` (string) Status of the webhook subscription indicating whether it is active and receiving notifications or inactive. Enum: "ACTIVE", "INACTIVE" - `createdAtDateTime` (string) The date and time when the webhook subscription was created. Example: "2024-01-15T10:30:00.000Z" - `updatedAtDateTime` (string) The date and time when the webhook subscription was last updated. Example: "2024-01-15T10:30:00.000Z" - `expirationDateTime` (string) The date and time when the webhook subscription will expire. Example: "2024-02-15T10:30:00.000Z" ## Response 401 fields ## Response 403 fields