Flight Booking Status Check And Response Sample

The Api is used to check the status of a booked flight, see sample request model and response.

Sample Request:

{ 
   "ConfirmationCode": 
   "37608|AMNLWS", "Surname": 
   "Ahmed"
}

Sample Responses:

Ticket Pending: 
{ 
  "StatusCode": 3, 
  "StatusDescription":"TicketPending" 
  "ErrorList": []
} 

Ticket cancelled: 
{ 
  "StatusCode": 1, 
  "StatusDescription": "Cancelled", 
  "ErrorList": [] 
} 

Ticket Issued: 
{ 
  "StatusCode": 2, 
  "StatusDescription": "TicketIssued", 
  "ErrorList": [] 
} 

Last updated