v1

latestOpenAPI 3.1.02026-08-0630894634.3 KB
Trip PNRs

Add Remark

This endpoint provided adding third party remarks to the given PNR.

post/v3/trips/{tripId}/pnrs/{pnrId}/remarks

Request body

Example request

{
  "remarks": [
    {
      "sabre": {
        "type": "GENERAL",
        "text": "PREF ALLIANCES 1-ONE WORLD/AA",
        "legIndex": 1
      }
    }
  ]
}

Response

OK

Example response

{
  "processedRemarks": [
    {
      "sabre": {
        "type": "GENERAL",
        "text": "PREF ALLIANCES 1-ONE WORLD/AA",
        "legIndex": 1
      }
    }
  ],
  "ignoredRemarks": [
    {
      "sabre": {
        "type": "GENERAL",
        "text": "PREF ALLIANCES 1-ONE WORLD/AA",
        "legIndex": 1
      }
    }
  ]
}