Convergence — External
1 endpoint. Server: https://api.tunnelflight.com/api
Each endpoint below includes parameters, an example payload, a copyable curl command, and a link to the originating .bru source on GitHub.
Create Booking
POST /external/convergence
Headers
| Name | Type | Required | Description |
|---|---|---|---|
Authorization | string | yes | Bearer token. Required for every request. |
client-id | string | yes | Client identifier issued by IBA. Required for every request. |
Request body
Request body example (default)
{
"member_id": 40,
"member_pin": "12345",
"purchase_id": 215312,
"registration_id": 123455,
"purchase_date": 1744131450,
"flight_date": 1744098000,
"minutes_booked": 9,
"product_id": 12893,
"tunnel_id": 25,
"checkin_time": 1744098000
}Responses
2XX — Successful response
Try it
curl --request POST \ --url 'https://api.tunnelflight.com/api/external/convergence' \
--header 'Authorization: Bearer <token>' \
--header 'client-id: <client-id>' \
--header 'content-type: application/json' \
--data '{"member_id":40,"member_pin":"12345","purchase_id":215312,"registration_id":123455,"purchase_date":1744131450,"flight_date":1744098000,"minutes_booked":9,"product_id":12893,"tunnel_id":25,"checkin_time":1744098000}'Last updated on