FlightRoutes24 API(Purchaser)
  1. FR24_API_V1.1.0
FlightRoutes24 API(Purchaser)
  • FR24_API_V1.1.0
    • API Work Flow
    • Introduction
    • Appendix
    • 错误码
    • Error Code
    • Shopping
      POST
    • Pricing
      POST
    • PresaleAncillaryShopping
      POST
    • Booking
      POST
    • Ticketing
      POST
    • OrderDetail
      POST
    • PostsaleAncillaryShopping
      POST
    • AncillaryBooking
      POST
    • AncillaryPurchase
      POST
    • AncillaryOrderDetail
      POST
    • ChangeReshop
      POST
    • ReissueRequest
      POST
    • RefundRequest
      POST
    • RefundConfirming
      POST
    • VoidRequest
      POST
  1. FR24_API_V1.1.0

ReissueRequest

POST
/api/new/reissueRequest.do
Calling reissueRequest API to apply for the change of the order. The quotation result will be notified through orderChangeInforming API. Calling ticketing API to confirm reissue.

Request

Header Params

Body Params application/json

Example
{
    "authentication": {
        "sign": "{{sign}}",
        "timestamp": "{{timestamp}}"
    },
    "tktOrderNo": "17982000496513024",
    "originalSegments": [
        {
            "carrier": "FD",
            "flightNo": "2271",
            "depTime": "2024-11-17T03:18"
        }
    ],
    "newLegs": [
        {
            "carrier": "FD",
            "flightNo": "2271",
            "depAirport": "SIN",
            "depTime": "2024-11-17T03:18",
            "arrAirport": "BKK",
            "arrTime": "2024-11-18T05:10",
            "RBD": ""
        }
    ],
    "passengers": [
        {
            "paxId": "1",
            "name": "DUOAF/JCVIU",
            "birthday": "1974-01-25",
            "gender": "M"
        }
    ],
    "cabin": "",
    "changeReason": "3",
    "remarks": "测试",
    "fileData": []
}

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 'https://flight-test.flightroutes24.com/api/new/reissueRequest.do' \
--header 'Accept-Encoding;' \
--header 'appKey;' \
--header 'content-Type: application/json' \
--data-raw '{
    "authentication": {
        "sign": "",
        "timestamp": ""
    },
    "tktOrderNo": "17982000496513024",
    "originalSegments": [
        {
            "carrier": "FD",
            "flightNo": "2271",
            "depTime": "2024-11-17T03:18"
        }
    ],
    "newLegs": [
        {
            "carrier": "FD",
            "flightNo": "2271",
            "depAirport": "SIN",
            "depTime": "2024-11-17T03:18",
            "arrAirport": "BKK",
            "arrTime": "2024-11-18T05:10",
            "RBD": ""
        }
    ],
    "passengers": [
        {
            "paxId": "1",
            "name": "DUOAF/JCVIU",
            "birthday": "1974-01-25",
            "gender": "M"
        }
    ],
    "cabin": "",
    "changeReason": "3",
    "remarks": "测试",
    "fileData": []
}'

Responses

🟢200OK
application/json
Body

Example
{
    "traceId": "NEWAPI24093012243539507741",
    "code": "000000",
    "message": "ok",
    "processingTime": 2856,
    "data": {
        "changeOrderNo": "17982004295962624",
        "tktOrderNo": "17982000496513024",
        "changeOrderStatus": "改期待审核"
    }
}
Modified at 2025-04-17 06:24:00
Previous
ChangeReshop
Next
RefundRequest
Built with