Skip to main content
POST
/
flight
/
booking
/
reschedule
/
confirm
Confirm Reschedule
curl --request POST \
  --url https://api.travomatrix.com/api/v1/flight/booking/reschedule/confirm \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "booking_id": "<string>"
}
'
{
  "booking_id": "<string>",
  "status": "RESCHEDULED",
  "fare_difference_paise": 123,
  "change_penalty_paise": 123,
  "new_total_paise": 123
}
Finalize the flight change and debit the difference (plus any penalties/OTA fees) from the B2B wallet.

Authorizations

X-API-Key
string
header
required

Headers

Idempotency-Key
string

A unique string to identify this request. Retrying a request with the same key will return the cached response.

X-Request-ID
string

Unique correlation ID for tracing.

Body

application/json
booking_id
string
required

Response

200 - application/json

Reschedule confirmed.

booking_id
string
status
enum<string>
Available options:
RESCHEDULED,
PENDING_WITH_AIRLINE
fare_difference_paise
integer
change_penalty_paise
integer
new_total_paise
integer