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

Make a Refund

POST
/refund.do
Dependency
Refund quotation function should be called in prior of this call
Endpoint:
https://sandbox.atriptech.com/refund.do

Request

Header Params

Body Params application/json

Examples
{
    "orderNo": "TESTA20240725164512131",
    "airlinePNR": null,
    "carrier": null,
    "displayCurrency": "EUR",
    "refundOfferId": "q_a86cd9c605c04f9cb3890ca3b037b254",
    "refundRequestList": null
}

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/refund.do' \
--header 'Accept;' \
--header 'Accept-Encoding;' \
--header 'x-atlas-client-id;' \
--header 'x-atlas-client-secret;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "orderNo": "TESTA20240725164512131",
    "airlinePNR": null,
    "carrier": null,
    "displayCurrency": "EUR",
    "refundOfferId": "q_a86cd9c605c04f9cb3890ca3b037b254",
    "refundRequestList": null
}'

Responses

🟢200Success
application/json
Body

Examples
{
    "refundStatus": 0,
    "refundCode": "202505-0012",
    "cancelReason": "",
    "refundReason": "0",
    "displayCurrency": "EUR",
    "fastConfirmation": null,
    "expectedConfirmationDate": "20250522",
    "expectedRefundDate": "20250701",
    "refundQuoteType": "CannotQuote",
    "refundOfferId": "q_a86cd9c605c04f9cb3890ca3b037b254",
    "refundMethod": "CashBackToOriginalPayment",
    "isRefundable": true,
    "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": [
        {
            "airline": "U2",
            "ruleType": "0",
            "passengerType": null,
            "penaltyAmount": "0.00 USD",
            "penaltyPercent": 0,
            "penaltyPercentBase": "fare+tax",
            "airlineFee": "0.00 USD",
            "taxRefundable": true,
            "fareRefundable": true,
            "refundableAncillaries": [
                "ALL"
            ],
            "startMinute": 525600,
            "endMinute": -525600,
            "refundMethod": "CashBackToOriginalPayment"
        }
    ],
    "orderNo": "TESTA20250512100600259",
    "status": 0,
    "msg": null
}
Modified at 2025-09-02 06:01:44
Previous
Refund Quotation
Next
Query Refund Status
Built with