Skip to main content
POST
/
flight
/
booking
/
reschedule
/
quote
Get Reschedule Quote
curl --request POST \
  --url https://api.travomatrix.com/api/v1/flight/booking/reschedule/quote \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "booking_id": "<string>",
  "new_offer_id": "<string>",
  "reason_code": "<string>"
}
'
{
  "booking_id": "<string>",
  "fare_difference_paise": 123,
  "airline_change_fee_paise": 123,
  "ota_fee_paise": 123,
  "total_payable_paise": 123,
  "quote_valid_until": "2023-11-07T05:31:56Z"
}
Calculate the fare difference and penalty fees for changing a flight.

Authorizations

X-API-Key
string
header
required

Body

application/json
booking_id
string
required
new_offer_id
string
required
reason_code
string

Response

200 - application/json

Reschedule quote details.

booking_id
string
fare_difference_paise
integer
airline_change_fee_paise
integer
ota_fee_paise
integer
total_payable_paise
integer
quote_valid_until
string<date-time>