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

PNR Claim

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

Request

Header Params

Body Params application/json

Example
{
    "mmb": {
        "airlinePnr": "S1BE6Z",
        "email": "TESTABC22Oct@pnrclaim.com"
    },
    "passengers": [
        {
            "name": "test/abc",
            "passengerType": 0,
            "birthday": "20001010",
            "gender": "M",
            "cardNum": "",
            "cardType": "PP",
            "cardIssuePlace": "",
            "cardExpired": "20241010",
            "nationality": ""
        }
    ],
    "fromSegments": [
        {
            "carrier": "AK",
            "flightNumber": "AK128",
            "depAirport": "DEL",
            "arrAirport": "BOM",
            "depTime": "202411201600",
            "arrTime": "202411201820",
            "stopCities": "",
            "codeShare": 0,
            "operatingCarrier": "",
            "operatingFlightNumber": "",
            "depTerminal": "T2",
            "arrTerminal": "T1",
            "cabinClass": "1",
            "fareFamily": "Flexi",
            "flightIndex": null,
            "duration": 140
        }
    ],
    "retSegments": 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/pnr/claim.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 '{
    "mmb": {
        "airlinePnr": "S1BE6Z",
        "email": "TESTABC22Oct@pnrclaim.com"
    },
    "passengers": [
        {
            "name": "test/abc",
            "passengerType": 0,
            "birthday": "20001010",
            "gender": "M",
            "cardNum": "",
            "cardType": "PP",
            "cardIssuePlace": "",
            "cardExpired": "20241010",
            "nationality": ""
        }
    ],
    "fromSegments": [
        {
            "carrier": "AK",
            "flightNumber": "AK128",
            "depAirport": "DEL",
            "arrAirport": "BOM",
            "depTime": "202411201600",
            "arrTime": "202411201820",
            "stopCities": "",
            "codeShare": 0,
            "operatingCarrier": "",
            "operatingFlightNumber": "",
            "depTerminal": "T2",
            "arrTerminal": "T1",
            "cabinClass": "1",
            "fareFamily": "Flexi",
            "flightIndex": null,
            "duration": 140
        }
    ],
    "retSegments": null
}'

Responses

🟢200Success
application/json
Body

Example
{
    "orderNo": "TESTC20241022100111040",
    "pnrCode": "RCOFMU",
    "status": 0,
    "msg": null
}
Modified at 2025-09-02 06:10:01
Previous
Order List
Next
Get Balance
Built with