Skip to main content
POST
/
flight
/
booking
/
ticket
Issue Ticket
curl --request POST \
  --url https://api.travomatrix.com/api/v1/flight/booking/ticket \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "booking_id": "<string>"
}
'
Issue the ticket for your booking_id. A booking must be TICKETED before it can be cancelled.

Request Setup

booking_id
string
required
Paste the booking_id from the previous step.

Instructions

  1. Review the requirements and set up the request payload.
  2. Hit the Send button.
Requirement: The booking status is now TICKETED.

Authorizations

X-API-Key
string
header
required

Body

application/json
booking_id
string
required

Response

200

Tickets issued successfully.