Atlas API-Sabre
  1. Refund
Atlas API-Sabre
  • Shopping and Ticketing
    • Search
      POST
    • Verify
      POST
    • Order
      POST
    • Order Commit
      POST
    • Payment
      POST
    • Retrieve Booking
      POST
    • Smart Search(Only For TMC)
      POST
    • Get Offer
      POST
    • Seat Availability
      POST
    • Get Luggage
      POST
  • Post Ticketing Service
    • Search Ancillary
      POST
    • Order Ancillary
      POST
  • Notifications and Webhook
    • Register Webhook
      POST
    • Incident List
      POST
  • Refund
    • Refund Quotation
      POST
    • Make a Refund
      POST
    • Query Refund Status
      POST
  • Other Functions
    • Regenerate Order
      POST
    • Stop Ticket Issuance
      POST
    • Order List
      POST
    • PNR Claim
      POST
    • Get Balance
      POST
    • City Pairs API
      POST
    • Email List
      POST
    • Extract PNR
      POST
    • getAtripToken
      POST
  1. Refund

Query Refund Status

POST
/queryRefundOrders.do
Dependency
No preceding function needs to be carried out.
Endpoint:
https://sandbox.atriptech.com/queryRefundOrders.do

Request

Header Params

Body Params application/json

Examples
{
    "refundCode": "202505-0013",
    "orderNo": "TESTA20250512100600259",
    "airlinePNR": null,
    "carrier": null,
    "displayCurrency": "EUR"
}

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
curl --location --request POST 'https://sandbox.atriptech.com/queryRefundOrders.do' \
--header 'Accept;' \
--header 'Accept-Encoding;' \
--header 'x-atlas-client-id;' \
--header 'x-atlas-client-secret;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "refundCode": "202505-0013",
    "orderNo": "TESTA20250512100600259",
    "airlinePNR": null,
    "carrier": null,
    "displayCurrency": "EUR"
}'

Responses

🟢200Success
application/json
Body

Examples
{
    "refundOrders": [
        {
            "orderNo": "TESTA20250512100600259",
            "refundCode": "202505-0013",
            "displayCurrency": "EUR",
            "expectedConfirmationDate": null,
            "expectedRefundDate": null,
            "refundQuoteType": "CannotQuote",
            "refundTickets": [
                {
                    "lastName": "ZHAO",
                    "firstName": "YIER",
                    "ticketNo": "S87579"
                },
                {
                    "lastName": "QIAN",
                    "firstName": "ERER",
                    "ticketNo": "S87579"
                }
            ],
            "refundFareAmount": {
                "currency": "USD",
                "originalFareAmount": 165.48,
                "estimatedRefundAmount": 165.48,
                "displayOriginalFareAmount": 153.46,
                "displayEstimatedRefundAmount": 153.46
            },
            "refundPostTicketingServiceAmounts": [],
            "refundVouchers": null,
            "serviceFee": {
                "currency": "USD",
                "transactionFee": 3,
                "displayTransactionFee": 2.78
            },
            "refundRules": [],
            "refundStatus": 4,
            "cancelReason": "hahaha11111",
            "refundOfferId": "q_6f99d2a1ffc74486be67a98772fa159d",
            "refundMethod": "CashBackToOriginalPayment"
        }
    ],
    "status": 0,
    "msg": null
}
Modified at 2025-09-02 06:07:54
Previous
Make a Refund
Next
Regenerate Order
Built with