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

voidRequest

POST
/api/new/voidRequest.do
Calling voidRequest to request for ticket void. Void result will be notified through orderChangeInforming API.

Request

Header Params

Body Params application/json

Example
{

    "authentication": {

        "sign": "{{sign}}",

        "timestamp": "{{time}}"

    },

    "tktOrderNo": "{{orderNo_detail}}",

    "partnerOrderNo": "",

    "passengers": [

        {

            "paxId": "1",

            "name": "{{pname_detail}}",

            "birthday": "{{pbirthday_detail}}",

            "gender": "{{pgender_detail}}"

        }

    ]

}

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/voidRequest.do' \
--header 'Accept-Encoding;' \
--header 'appKey;' \
--header 'content-Type: application/json' \
--data-raw '{

    "authentication": {

        "sign": "",

        "timestamp": "{{time}}"

    },

    "tktOrderNo": "{{orderNo_detail}}",

    "partnerOrderNo": "",

    "passengers": [

        {

            "paxId": "1",

            "name": "{{pname_detail}}",

            "birthday": "{{pbirthday_detail}}",

            "gender": "{{pgender_detail}}"

        }

    ]

}'

Responses

🟢200OK
application/json
Body

Example
{
    "traceId": "",
    "code": "000000",
    "message": "success",
    "processingTime": 160,
    "data": {
        "voidOrderNo": "",
        "tktOrderNo": "",
        "voidOrderStatus": "36"
    }
}
Modified atĀ 2025-06-12 09:40:48
Previous
refundConfirming
Next
fileUpload
Built with