FR24 OpenAPI
  1. API Reference
FR24 OpenAPI
  • FR24_API_V2.0
    • Guides
      • API Work Flow
      • Introduction
      • Appendix
      • Version History
      • Error Code
    • API Reference
      • shopping
        POST
      • pricing
        POST
      • presaleAncillaryShopping
        POST
      • seatMap
        POST
      • booking
        POST
      • ticketing
        POST
      • orderChangeInforming
        POST
      • orderDetail
        POST
      • postsaleAncillaryShopping
        POST
      • ancillaryBooking
        POST
      • ancillaryPurchase
        POST
      • ancillaryOrderDetail
        POST
      • changeReshop
        POST
      • reissueRequest
        POST
      • refundRequest
        POST
      • refundConfirming
        POST
      • voidRequest
        POST
      • fileUpload
        POST
      • selectBalance
        POST
    • About us
      • API capability
      • Business Cooperation
      • Portal
  1. API Reference

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": "{{time}}"
    },
    "tktOrderNo": "{{orderNo_detail}}",
    "originalSegments": [
        {
            "carrier": "{{carrier_detail}}",
            "flightNo": "{{flightNo_detail}}",
            "depTime": "{{depTime_detail}}"
        }
    ],
    "newLegs": [
        {
            "carrier": "FW",
            "flightNo": "1234",
            "depAirport": "SIN",
            "depTime": "2023-11-16T11:44",
            "arrAirport": "HKG",
            "arrTime": "2023-11-16T15:55",
            "RBD": ""
        }
    ],
    "passengers": [
        {
            "paxId": "1",
            "name": "{{pname_detail}}",
            "birthday": "{{pbirthday_detail}}",
            "gender": "{{pgender_detail}}"
        }
    ],
    "cabin": "",
    "changeReason": "2",
    "remarks": "test",
    "fileData": [
        {
            "fileId": "hEHKCr/s+PmDM/Ih4mbYcGt1aOd7gQ2TYNUTNfSMLcSalTIz9fuE1AYGYc5sTGTopjvd6iZ6GTA2TyNQv0VCMQ==",
            "fileName": "avatar.png"
        }
    ]
}

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": "{{time}}"
    },
    "tktOrderNo": "{{orderNo_detail}}",
    "originalSegments": [
        {
            "carrier": "{{carrier_detail}}",
            "flightNo": "{{flightNo_detail}}",
            "depTime": "{{depTime_detail}}"
        }
    ],
    "newLegs": [
        {
            "carrier": "FW",
            "flightNo": "1234",
            "depAirport": "SIN",
            "depTime": "2023-11-16T11:44",
            "arrAirport": "HKG",
            "arrTime": "2023-11-16T15:55",
            "RBD": ""
        }
    ],
    "passengers": [
        {
            "paxId": "1",
            "name": "{{pname_detail}}",
            "birthday": "{{pbirthday_detail}}",
            "gender": "{{pgender_detail}}"
        }
    ],
    "cabin": "",
    "changeReason": "2",
    "remarks": "test",
    "fileData": [
        {
            "fileId": "hEHKCr/s+PmDM/Ih4mbYcGt1aOd7gQ2TYNUTNfSMLcSalTIz9fuE1AYGYc5sTGTopjvd6iZ6GTA2TyNQv0VCMQ==",
            "fileName": "avatar.png"
        }
    ]
}'

Responses

🟢200OK
application/json
Body

Example
{
    "traceId": "",
    "code": "000000",
    "message": "success",
    "processingTime": 160,
    "changeOrderNo": "",
    "tktOrderNo": "{{orderNo_detail}}",
    "changeOrderStatus": "47"
}
Modified atĀ 2025-07-28 04:24:31
Previous
changeReshop
Next
refundRequest
Built with