OneWorldTrip
English中文
English中文
  1. Schedule Change API
  • API Integration Guide
  • Flight Ticket Distribution Direct Connect API
    • Search
      POST
    • Verify
      POST
    • Order
      POST
    • Cancel
      POST
    • Order Status Push
      POST
    • Get OrderInfo
      POST
    • Order Copy
      POST
  • Order Management API
    • Order Management Workflow
    • Ticket Issuance
      POST
    • Get Order Details
      POST
    • Get Pending Ticketing Orders
      POST
    • Get after-sales order
      POST
    • Ticket reminder interface
      POST
  • Schedule Change API
    • Schedule Change Workflow
    • Flight Reschedule Notification
      POST
  • Cache Refresh API
    • Refresh Notiry
      POST
    • Cache Refresh
      POST
  • Ancillary Order Management API
    • Ancillary Workflow
    • SeatMap
      POST
    • AuxSearch
      POST
    • Query Ancillary Order List
      POST
    • Update Ancillary Status
      POST
    • Query Ancillary Order Detail
      POST
  1. Schedule Change API

Flight Reschedule Notification

POST

Description#

NOTE
Purpose:Suppliers notify OTA Channels of a flight change by calling this interface.
HTTP Method: POST.
Endpoint: Provided by the OTA Channels

Request

Body Params application/json

Example
{
    "orderNumber": "12345678901",
    "originalFlightList": [
        {
            "arrAirport": "GMP",
            "arrTime": "202406281740",
            "depAirport": "KHH",
            "depTime": "202406281345",
            "flightChangeType": 2,
            "flightNumber": 652,
            "flightSeq": 1,
            "marketingCarrier": "TW",
            "rbd": "P"
        }
    ],
    "newFlightList": [
        {
            "arrAirport": "GMP",
            "arrTime": "202406281740",
            "depAirport": "KHH",
            "depTime": "202406281345",
            "flightChangeType": 2,
            "flightNumber": 678,
            "flightSeq": 1,
            "marketingCarrier": "TW",
            "rbd": "P"
        }
    ],
    "userName": "{{userName}}",
    "password": "{{password}}"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://58.250.183.7:31011' \
--header 'Content-Type: application/json' \
--data-raw '{
    "orderNumber": "12345678901",
    "originalFlightList": [
        {
            "arrAirport": "GMP",
            "arrTime": "202406281740",
            "depAirport": "KHH",
            "depTime": "202406281345",
            "flightChangeType": 2,
            "flightNumber": 652,
            "flightSeq": 1,
            "marketingCarrier": "TW",
            "rbd": "P"
        }
    ],
    "newFlightList": [
        {
            "arrAirport": "GMP",
            "arrTime": "202406281740",
            "depAirport": "KHH",
            "depTime": "202406281345",
            "flightChangeType": 2,
            "flightNumber": 678,
            "flightSeq": 1,
            "marketingCarrier": "TW",
            "rbd": "P"
        }
    ],
    "userName": "{{userName}}",
    "password": "{{password}}"
}'

Responses

🟢200success
application/json
Body

Example
{
    "status": "0",
    "msg": "success"
}
Modified at 2025-03-20 03:22:59
Previous
Schedule Change Workflow
Next
Refresh Notiry
Built with