Atlas API-Sabre
  1. Shopping and Ticketing
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. Shopping and Ticketing

Order

POST
/order.do
Dependency:
Verify function should be called in prior to this call.
The booking requirements need to be read from the "bookingRequirement" array in the "verify.do" response. The "Booking Requirements" can be different at the route level. Alternatively, you can add all the details but please note that all the fields should have actual data and not fictitious information. Please follow this approach.
Endpoint:
https://sandbox.atriptech.com/order.do

Request

Header Params

Body Params application/json

Example
{
    "sessionId": "a39fc063-3192-4058-b179-998ebfb2fed8",
    "offerId": "",
    "passengers": [
        {
            "name": "For/Test",
            "passengerType": 0,
            "gender": "M",
            "birthday": "19900101",
            "cardType": "NATIONAL_ID_CARD",
            "cardNum": "636940383",
            "cardIssuePlace": "PT",
            "cardExpired": "20250101",
            "nationality": "US",
            "ffpCardNo": null,
            "ffpCarrier": null,
            "ancillaries": [
                {
                    "productCode": "SCI_BAG_1PC_15KG",
                    "segmentIndex": 1
                },
                {
                    "productCode": "SCI_BAG_1PC_15KG",
                    "segmentIndex": 2
                }
            ]
        }
    ],
    "contact": {
        "name": "For/Test",
        "address": "For test",
        "postcode": "",
        "email": "for-test@example.com",
        "mobile": "0001-12345678900"
    },
    "useAtlasMailForContact": false,
    "locale": "",
    "requestSource": "",
    "ifSeatOccupied": "",
    "payment": 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 --location --request POST 'https://sandbox.atriptech.com/order.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 '{
    "sessionId": "a39fc063-3192-4058-b179-998ebfb2fed8",
    "offerId": "",
    "passengers": [
        {
            "name": "For/Test",
            "passengerType": 0,
            "gender": "M",
            "birthday": "19900101",
            "cardType": "NATIONAL_ID_CARD",
            "cardNum": "636940383",
            "cardIssuePlace": "PT",
            "cardExpired": "20250101",
            "nationality": "US",
            "ffpCardNo": null,
            "ffpCarrier": null,
            "ancillaries": [
                {
                    "productCode": "SCI_BAG_1PC_15KG",
                    "segmentIndex": 1
                },
                {
                    "productCode": "SCI_BAG_1PC_15KG",
                    "segmentIndex": 2
                }
            ]
        }
    ],
    "contact": {
        "name": "For/Test",
        "address": "For test",
        "postcode": "",
        "email": "for-test@example.com",
        "mobile": "0001-12345678900"
    },
    "useAtlasMailForContact": false,
    "locale": "",
    "requestSource": "",
    "ifSeatOccupied": "",
    "payment": null
}'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 0,
    "msg": null,
    "sessionId": "a39fc063-3192-4058-b179-998ebfb2fed8",
    "offerId": "",
    "orderNo": "TESTA20250816160804096",
    "pnrCode": "MDQZ7U",
    "totalPrice": 300.35,
    "totalTransactionFee": 2.00,
    "currency": "USD",
    "vendorTotalPrice": 221.19,
    "vendorCurrency": "GBP",
    "tktLimitTime": "2025-08-16 16:58:04",
    "paxTicketInfos": [
        {
            "name": "For/Test",
            "passengerType": 0,
            "birthday": "19900101",
            "gender": "M",
            "cardNum": "636940383",
            "cardType": "NATIONAL_ID_CARD",
            "cardIssuePlace": "PT",
            "cardExpired": "20250101",
            "nationality": "US",
            "ticketNos": [],
            "airlinePNRs": [],
            "contactEmails": [
                "for-test@example.com"
            ],
            "contactPhones": [
                "0001-12345678900"
            ],
            "ancillaries": [
                {
                    "productCode": "SCI_BAG_1PC_15KG",
                    "segmentIndex": 1,
                    "currency": "USD",
                    "ancillaryPrice": 27.12,
                    "auxBaggageElement": {
                        "piece": 1,
                        "weight": 15,
                        "isAllWeight": true,
                        "size": ""
                    },
                    "vendorPrice": null,
                    "vendorCurrency": null,
                    "displayCurrency": null,
                    "displayPrice": null
                },
                {
                    "productCode": "SCI_BAG_1PC_15KG",
                    "segmentIndex": 2,
                    "currency": "USD",
                    "ancillaryPrice": 31.09,
                    "auxBaggageElement": {
                        "piece": 1,
                        "weight": 15,
                        "isAllWeight": true,
                        "size": ""
                    },
                    "vendorPrice": null,
                    "vendorCurrency": null,
                    "displayCurrency": null,
                    "displayPrice": null
                }
            ]
        }
    ],
    "routing": {
        "routingIdentifier": "TE9OX1BBUl8yXzIwMjUwODE4XzIwMjUwODIwXzFfMF8wfHR2aWluNjU0Mjh8MXwyNDIuMTRfMjQyLjE0XzY0LjE3XzIuMDBfNTUwLjQ1X1VTRHxMT05fUEFSXzFfMjAyNTA4MThfMjAyNTA4MjBfMV8wXzBeTEdXLVUyODQwNS0tQ0RHLTIwMjUwODE4MTY0MC0yMDI1MDgxODE4NTUtU3RhbmRhcmQtMS0jQ0RHLVUyODQxMC0tTEdXLTIwMjUwODIwMTkxMC0yMDI1MDgyMDE5MjAtU3RhbmRhcmQtMi1eMjQyLjE0XzI0Mi4xNF82NC4xN18yLjAwXzU1MC40NV5BRUNBRVVSX0FFQ15eQUVDMkxPTlBBUjIwMDIwMjUwODE4MjAyNTA4MjBeR0JQXjE3OC4zMl4xNzguMzJeNDcuMjVeMHwwfDIwMjUwODE2MTU1NzQ1fDB8MTc1NTMzMTA2NTU0MkJOYm1HfHx8fHwyLjAwfDN8MHx8bm9ybWFsfGZhbHNl.5FDcOQsu5zTUOBN/jPsM23gT5WuaPAs7g8AmH8q/m0U=",
        "supportCreditTransPayment": "0",
        "supportPaymentMethods": [
            1,
            5
        ],
        "currency": "USD",
        "adultPrice": 242.14,
        "adultTax": 0.00,
        "adultDetails": [
            {
                "code": "farePrice",
                "type": "base",
                "amount": 242.14,
                "description": ""
            },
            {
                "code": "tax",
                "type": "tax",
                "amount": 0,
                "description": ""
            }
        ],
        "childPrice": 242.14,
        "childTax": 0.00,
        "childDetails": [
            {
                "code": "farePrice",
                "type": "base",
                "amount": 242.14,
                "description": ""
            },
            {
                "code": "tax",
                "type": "tax",
                "amount": 0,
                "description": ""
            }
        ],
        "infantPrice": 64.17,
        "infantTax": 0.00,
        "infantDetails": [
            {
                "code": "farePrice",
                "type": "base",
                "amount": 64.17,
                "description": ""
            },
            {
                "code": "tax",
                "type": "tax",
                "amount": 0,
                "description": ""
            }
        ],
        "infantAllowed": true,
        "childMandatorySeatingFee": null,
        "transactionFeePerPax": 2.00,
        "transactionFee": 2.00,
        "transactionFeeMode": "PER_PAX",
        "fromSegments": [
            {
                "segmentIndex": 1,
                "carrier": "U2",
                "flightNumber": "U28405",
                "depAirport": "LGW",
                "depTime": "202508181640",
                "arrAirport": "CDG",
                "arrTime": "202508181855",
                "stopCities": null,
                "duration": 75,
                "codeShare": false,
                "cabin": "",
                "cabinClass": 1,
                "seatCount": 9,
                "aircraftCode": "",
                "depTerminal": "",
                "arrTerminal": "",
                "operatingCarrier": "",
                "operatingFlightnumber": "",
                "fareFamily": "Standard"
            }
        ],
        "retSegments": [
            {
                "segmentIndex": 2,
                "carrier": "U2",
                "flightNumber": "U28410",
                "depAirport": "CDG",
                "depTime": "202508201910",
                "arrAirport": "LGW",
                "arrTime": "202508201920",
                "stopCities": null,
                "duration": 70,
                "codeShare": false,
                "cabin": "",
                "cabinClass": 1,
                "seatCount": 9,
                "aircraftCode": "",
                "depTerminal": "",
                "arrTerminal": "",
                "operatingCarrier": "",
                "operatingFlightnumber": "",
                "fareFamily": "Standard"
            }
        ],
        "rule": {
            "hasBaggage": 1,
            "baggageElements": [
                {
                    "segmentNo": 1,
                    "baggageType": "CabinBaggageUnderSeat",
                    "passengerType": 0,
                    "baggagePiece": 1,
                    "baggageWeight": 15,
                    "baggageSize": "45*36*20cm"
                },
                {
                    "segmentNo": 1,
                    "baggageType": "StandardCheckInBaggage",
                    "passengerType": 0,
                    "baggagePiece": 0,
                    "baggageWeight": 0,
                    "baggageSize": ""
                },
                {
                    "segmentNo": 2,
                    "baggageType": "CabinBaggageUnderSeat",
                    "passengerType": 0,
                    "baggagePiece": 1,
                    "baggageWeight": 15,
                    "baggageSize": "45*36*20cm"
                },
                {
                    "segmentNo": 2,
                    "baggageType": "StandardCheckInBaggage",
                    "passengerType": 0,
                    "baggagePiece": 0,
                    "baggageWeight": 0,
                    "baggageSize": ""
                }
            ],
            "refundRules": [
                {
                    "refundType": 0,
                    "refundStatus": "T",
                    "refundMethod": "CASH_BACK_TO_ORIGINAL_PAYMENT",
                    "refundFee": 0.0,
                    "currency": "GBP",
                    "refNoshow": "T",
                    "refNoShowCondition": 0,
                    "refNoshowFee": 0.0,
                    "ruleDetailList": [
                        {
                            "status": "T",
                            "refundMethod": "CashBackToOriginalPayment",
                            "startMinute": 525600,
                            "endMinute": 0,
                            "amount": 0.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "T",
                            "refundMethod": "CashBackToOriginalPayment",
                            "startMinute": 0,
                            "endMinute": -525600,
                            "amount": 0.0,
                            "currency": "GBP"
                        }
                    ]
                },
                {
                    "refundType": 0,
                    "refundStatus": "T",
                    "refundMethod": "CASH_BACK_TO_ORIGINAL_PAYMENT",
                    "refundFee": 0.0,
                    "currency": "GBP",
                    "refNoshow": "T",
                    "refNoShowCondition": 0,
                    "refNoshowFee": 0.0,
                    "ruleDetailList": [
                        {
                            "status": "T",
                            "refundMethod": "CashBackToOriginalPayment",
                            "startMinute": 525600,
                            "endMinute": 0,
                            "amount": 0.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "T",
                            "refundMethod": "CashBackToOriginalPayment",
                            "startMinute": 0,
                            "endMinute": -525600,
                            "amount": 0.0,
                            "currency": "GBP"
                        }
                    ]
                }
            ],
            "changesRules": [
                {
                    "changesType": 0,
                    "changesStatus": "T",
                    "changesFee": 0.0,
                    "currency": "GBP",
                    "revNoshow": "T",
                    "revNoShowCondition": 0,
                    "revNoshowFee": 0.0,
                    "ruleDetailList": [
                        {
                            "status": "H",
                            "startMinute": 525600,
                            "endMinute": 86400,
                            "amount": 30.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "H",
                            "startMinute": 86400,
                            "endMinute": 120,
                            "amount": 49.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "T",
                            "startMinute": 120,
                            "endMinute": 0,
                            "amount": 0.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "T",
                            "startMinute": 0,
                            "endMinute": -525600,
                            "amount": 0.0,
                            "currency": "GBP"
                        }
                    ]
                },
                {
                    "changesType": 0,
                    "changesStatus": "T",
                    "changesFee": 0.0,
                    "currency": "GBP",
                    "revNoshow": "T",
                    "revNoShowCondition": 0,
                    "revNoshowFee": 0.0,
                    "ruleDetailList": [
                        {
                            "status": "H",
                            "startMinute": 525600,
                            "endMinute": 86400,
                            "amount": 30.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "H",
                            "startMinute": 86400,
                            "endMinute": 120,
                            "amount": 49.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "T",
                            "startMinute": 120,
                            "endMinute": 0,
                            "amount": 0.0,
                            "currency": "GBP"
                        },
                        {
                            "status": "T",
                            "startMinute": 0,
                            "endMinute": -525600,
                            "amount": 0.0,
                            "currency": "GBP"
                        }
                    ]
                }
            ],
            "serviceElements": [
                {
                    "hasFreeSeat": 0,
                    "hasFreeMeal": 0
                },
                {
                    "hasFreeSeat": 0,
                    "hasFreeMeal": 0
                }
            ]
        },
        "ancillaryProductElements": [
            {
                "ancillaryCode": "CBOL_1PC_15KG_MAXIMUM SIZE 56 X 45 X 25 CM",
                "auxBaggageElement": {
                    "piece": 1,
                    "weight": 15,
                    "isAllWeight": true,
                    "size": "Maximum Size 56 x 45 x 25 cm"
                },
                "canPurchaseWithTicket": 1,
                "canPurchasePostTicket": 0,
                "categoryCode": "CabinBaggageOverheadLocker",
                "clientTechnicalServiceFee": 0,
                "currency": "USD",
                "maxQty": 1,
                "minQty": 1,
                "price": 26.57,
                "productCode": "CBOL_1PC_15KG_MAXIMUM SIZE 56 X 45 X 25 CM",
                "segmentIndex": 1,
                "vendorPrice": 19.56,
                "vendorCurrency": "GBP",
                "displayPrice": null,
                "displayCurrency": null
            },
            {
                "segmentIndex": 1,
                "productCode": "SCI_BAG_1PC_15KG",
                "canPurchaseWithTicket": 1,
                "canPurchasePostTicket": 0,
                "price": 27.12,
                "currency": "USD",
                "vendorPrice": 19.97,
                "vendorCurrency": "GBP",
                "clientTechnicalServiceFee": 0,
                "auxBaggageElement": {
                    "piece": 1,
                    "weight": 15,
                    "isAllWeight": true,
                    "size": ""
                },
                "maxQty": 1,
                "minQty": 1,
                "categoryCode": "StandardCheckInBaggage",
                "ancillaryCode": "SCI_BAG_1PC_15KG",
                "displayPrice": null,
                "displayCurrency": null
            },
            {
                "segmentIndex": 1,
                "productCode": "SCI_BAG_2PC_30KG",
                "canPurchaseWithTicket": 1,
                "canPurchasePostTicket": 0,
                "price": 39.95,
                "currency": "USD",
                "vendorPrice": 29.42,
                "vendorCurrency": "GBP",
                "clientTechnicalServiceFee": 0,
                "auxBaggageElement": {
                    "piece": 2,
                    "weight": 30,
                    "isAllWeight": true,
                    "size": ""
                },
                "maxQty": 1,
                "minQty": 1,
                "categoryCode": "StandardCheckInBaggage",
                "ancillaryCode": "SCI_BAG_2PC_30KG",
                "displayPrice": null,
                "displayCurrency": null
            },
            {
                "segmentIndex": 2,
                "productCode": "CBOL_1PC_15KG_MAXIMUM SIZE 56 X 45 X 25 CM",
                "canPurchaseWithTicket": 1,
                "canPurchasePostTicket": 0,
                "price": 41.67,
                "currency": "USD",
                "vendorPrice": 30.69,
                "vendorCurrency": "GBP",
                "clientTechnicalServiceFee": 0,
                "auxBaggageElement": {
                    "piece": 1,
                    "weight": 15,
                    "isAllWeight": true,
                    "size": "Maximum Size 56 x 45 x 25 cm"
                },
                "maxQty": 1,
                "minQty": 1,
                "categoryCode": "CabinBaggageOverheadLocker",
                "ancillaryCode": "CBOL_1PC_15KG_MAXIMUM SIZE 56 X 45 X 25 CM",
                "displayPrice": null,
                "displayCurrency": null
            },
            {
                "segmentIndex": 2,
                "productCode": "SCI_BAG_1PC_15KG",
                "canPurchaseWithTicket": 1,
                "canPurchasePostTicket": 0,
                "price": 31.09,
                "currency": "USD",
                "vendorPrice": 22.90,
                "vendorCurrency": "GBP",
                "clientTechnicalServiceFee": 0,
                "auxBaggageElement": {
                    "piece": 1,
                    "weight": 15,
                    "isAllWeight": true,
                    "size": ""
                },
                "maxQty": 1,
                "minQty": 1,
                "categoryCode": "StandardCheckInBaggage",
                "ancillaryCode": "SCI_BAG_1PC_15KG",
                "displayPrice": null,
                "displayCurrency": null
            },
            {
                "segmentIndex": 2,
                "productCode": "SCI_BAG_2PC_30KG",
                "canPurchaseWithTicket": 1,
                "canPurchasePostTicket": 0,
                "price": 74.57,
                "currency": "USD",
                "vendorPrice": 54.91,
                "vendorCurrency": "GBP",
                "clientTechnicalServiceFee": 0,
                "auxBaggageElement": {
                    "piece": 2,
                    "weight": 30,
                    "isAllWeight": true,
                    "size": ""
                },
                "maxQty": 1,
                "minQty": 1,
                "categoryCode": "StandardCheckInBaggage",
                "ancillaryCode": "SCI_BAG_2PC_30KG",
                "displayPrice": null,
                "displayCurrency": null
            }
        ],
        "vendorFare": null,
        "links": [],
        "separateBookings": false,
        "refreshTime": null,
        "expireTime": null,
        "displayFare": null,
        "ancillarySupported": [
            "seat",
            "luggage"
        ],
        "cardChargeList": [
            {
                "cardType": "Visa",
                "percentage": 0.0300,
                "charge": null,
                "currency": ""
            },
            {
                "cardType": "MasterCard",
                "percentage": 0.0300,
                "charge": null,
                "currency": ""
            }
        ]
    },
    "duplicateOrders": null,
    "paymentOptions": [
        {
            "paymentMethod": 1,
            "serviceFee": {
                "amount": 2.00,
                "currency": "USD",
                "deductFrom": "DEPOSIT",
                "displayAmount": null,
                "displayCurrency": null
            },
            "ticketFare": {
                "amount": 300.35,
                "currency": "USD",
                "deductFrom": "DEPOSIT",
                "displayAmount": null,
                "displayCurrency": null
            },
            "paymentFee": {
                "amount": 0.00,
                "currency": "USD",
                "deductFrom": "CARD",
                "displayAmount": null,
                "displayCurrency": null
            },
            "cardType": null
        }
    ]
}
Modified at 2025-09-02 05:46:49
Previous
Verify
Next
Order Commit
Built with