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

ancillaryPurchase

POST
/api/new/ancillaryPurchase.do
Calling the API to pay for post-sales ancillary orders.
This API is used for order payment & ancillary purchase. Only.
Making payments and request by calling the AncillaryPurchase API. The partner calls this API to inform FR24 to deduct balance for the order requested. If the API called successfully, the payment will be successfully processed.
After the order is created, the order has to be paid within payment deadline, otherwise the order will be canceled.

Request

Header Params

Body Params application/json

Example
{
    "authentication" : {

    },
    "auxOrderNo" : "",
    "partnerAuxOrderNo" : "",
    "orderNo" : "",
    "currency" : "",
    "totalPrice" : "",
    "paymentMethod" : ""
}

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

    },
    "auxOrderNo" : "",
    "partnerAuxOrderNo" : "",
    "orderNo" : "",
    "currency" : "",
    "totalPrice" : "",
    "paymentMethod" : ""
}'

Responses

🟢200OK
application/json
Body

Example
{
    "traceId": "",
    "code": "",
    "message": "",
    "processingTime": "",
    "data": {
        "auxOrderNo": "",
        "partnerOrderNo": "",
        "orderNo": "",
        "currency": "",
        "totalPrice": ""
    }
}
Modified at 2025-06-12 09:40:09
Previous
ancillaryBooking
Next
ancillaryOrderDetail
Built with