Atlas API-Sabre
  1. Other Functions
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. Other Functions

Order List

POST
/orderList.do
Dependency:
No preceding function needs to be called before 'orderList' API.
Endpoint:
https://sandbox.atriptech.com/orderList.do

Request

Header Params

Body Params application/json

Example
{
    "orderNo": "",
    "airlinePNRs": [
        "FT759J",
        "8HFT67"
    ],
    "paxName": "",
    "contactEmail": "",
    "fromCity": "",
    "toCity": "",
    "depDate": "20250101",
    "createTimeRangeFrom": "2024-10-31T19:57:46Z",
    "createTimeRangeTo": "2024-11-01T19:57:46Z",
    "orderStatus": [
        0,
        1,
        2,
        -3
    ],
    "airlines": [
        "SL",
        "TF"
    ],
    "page": 1,
    "pageSize": 20
}

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://sandbox.atriptech.com/orderList.do' \
--header 'Accept: application/json' \
--header 'Accept;' \
--header 'Accept-Encoding: gzip' \
--header 'Accept-Encoding;' \
--header 'x-atlas-client-id: <YOUR_CLIENT_ID>' \
--header 'x-atlas-client-id;' \
--header 'x-atlas-client-secret: <YOUR_CLIENT_SECRET>' \
--header 'x-atlas-client-secret;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "orderNo": "",
    "airlinePNRs": [
        "FT759J",
        "8HFT67"
    ],
    "paxName": "",
    "contactEmail": "",
    "fromCity": "",
    "toCity": "",
    "depDate": "20250101",
    "createTimeRangeFrom": "2024-10-31T19:57:46Z",
    "createTimeRangeTo": "2024-11-01T19:57:46Z",
    "orderStatus": [
        0,
        1,
        2,
        -3
    ],
    "airlines": [
        "SL",
        "TF"
    ],
    "page": 1,
    "pageSize": 20
}'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 0,
    "msg": null,
    "page": 1,
    "pageSize": 20,
    "totalRecords": 2,
    "orders": [
        {
            "orderNo": "TESTA20241122090710695",
            "pnrCode": "Z27T5B",
            "airlinePNRs": [
                "FT759J"
            ],
            "orderStatus": 2,
            "depDate": "20250101",
            "airlines": [
                "SL"
            ],
            "orderCreateTimestamp": "2024-11-22T01:07:10Z",
            "paymentTimestamp": "2024-11-22T01:07:11Z",
            "paxNames": [
                "YIJING/tFGo"
            ],
            "contactEmail": "test@test.com",
            "fromCity": "CNX",
            "toCity": "BKK",
            "errorCode": null,
            "errorMessage": null
        },
        {
            "orderNo": "TESTA20241122080618700",
            "pnrCode": "LLQNYJ",
            "airlinePNRs": [
                "8HFT67|8HFT67"
            ],
            "orderStatus": 2,
            "depDate": "20250101",
            "airlines": [
                "TF"
            ],
            "orderCreateTimestamp": "2024-11-22T00:06:18Z",
            "paymentTimestamp": "2024-11-22T00:06:19Z",
            "paxNames": [
                "YIJING/gAMM",
                "JIXING/gAMM"
            ],
            "contactEmail": "test@test.com",
            "fromCity": "VBY",
            "toCity": "STO",
            "errorCode": null,
            "errorMessage": null
        }
    ]
}
Modified at 2025-09-02 06:09:38
Previous
Stop Ticket Issuance
Next
PNR Claim
Built with