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 reschedule. The wallet will be automatically debited for the fare difference and penalty fees.

Request Setup

Idempotency-Key
string
required
Generate a random string.
booking_id
string
required
Paste the booking_id.

Instructions

  1. Review the requirements and set up the request payload.
  2. Hit the Send button.
Requirement: Review the response payload carefully.

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