Skip to main content
POST
/
api
/
bookings
/
{id}
/
confirm
Confirm/reject/alternate booking
curl --request POST \
  --url https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings/{id}/confirm \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": "confirm",
  "reason": "Capacity available",
  "alternateFlightId": "QR003-20240101"
}'
{
  "bookingId": "booking-123",
  "status": "confirmed",
  "awbNumber": "15712345678"
}
Airline confirms, rejects, or provides alternative for booking (FFA semantics).

Reference Documentation

For more information on FFA confirmation messages, please refer to:

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Booking ID

Body

application/json
action
enum<string>
required
Available options:
confirm,
reject,
alternate
Example:

"confirm"

reason
string
Example:

"Capacity available"

alternateFlightId
string
Example:

"QR003-20240101"

Response

200 - application/json

Confirmation processed

bookingId
string
Example:

"booking-123"

status
string
Example:

"confirmed"

awbNumber
string
Example:

"15712345678"

I