Skip to content

Add Single Traveler

Request

Send the Add Traveler request to add a single traveler to the reservation workbench. Traveler information can include traveler name and contact details, add traveler-specific remarks including certain SSRs and travel documents such as a passport.
Add each traveler to the same workbench with separate POST requests.
Alternatively, use air/book/traveler/reservationworkbench/{workbenchID}/travelers/list when adding multiple travelers.

Security
bearerAuth
Path
ReservationResource_Identifierstring, <= 128 charactersrequired

The Reservation Identifier you wish to add the Traveler information to

Example:49f58f5f-c443-43b4-9f5d-be405fd00a01
Headers
TraceIdstring, [ 10 .. 89 ] characters

Identifier used to correlate Air API invocations across a multi-call business flows.

Example:TraceID_123456789
XAUTH_TRAVELPORT_ACCESSGROUPstring, = 36 characters([a-zA-Z-0-9-_]*)

Identifies the Travelport access group with which the caller is associated

Example:19Y88702-C27A-4E5D-829A-89D7016688B1
travelportPlusSessionIdentifierstring, [ 0 .. 100 ] characters([a-zA-Z-0-9-_]*)

travelportPlusSessionIdentifier used to maintain an established agency session

Example:49f58f5f-c443-43b4-9f5d-be405fd00a01
TVP-PCC-Corestring^[a-zA-Z\d]{3,4}_\w{2}$

Allows user to pass PCC instead of Access Group ID

Example:DU7_1G
Bodyapplication/jsonrequired
@typestringrequired

Discriminator classes TravelerID or Traveler

Example:"Traveler"
Discriminator
curl -i -X POST \
  https://developer.travelport.com/_mock/apis/flights/air/book/traveler/reservationworkbench/49f58f5f-c443-43b4-9f5d-be405fd00a01/travelers \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'TVP-PCC-Core: DU7_1G' \
  -H 'TraceId: TraceID_123456789' \
  -H 'XAUTH_TRAVELPORT_ACCESSGROUP: 19Y88702-C27A-4E5D-829A-89D7016688B1' \
  -H 'travelportPlusSessionIdentifier: 49f58f5f-c443-43b4-9f5d-be405fd00a01' \
  -d '{
    "@type": "Traveler",
    "birthDate": "2000-01-01",
    "id": "trav_1",
    "passengerTypeCode": "INF",
    "PersonName": {
      "@type": "PersonNameDetail",
      "Given": "TestFirstInf",
      "Middle": "",
      "Surname": "TestLastInf",
      "Suffix": "Jr"
    },
    "Telephone": [
      {
        "@type": "Telephone",
        "countryAccessCode": "1",
        "areaCityCode": "305",
        "phoneNumber": "868767809",
        "id": "telephone_1",
        "role": "Home"
      }
    ],
    "TravelDocument": [
      {
        "@type": "TravelDocument",
        "docNumber": "H294F6",
        "docType": "Passport",
        "expireDate": "2030-12-29",
        "issueCountry": "US",
        "birthDate": "2000-01-01",
        "Nationality": "US",
        "Gender": "Female",
        "PersonName": {
          "@type": "PersonName",
          "Given": "TestFirstInf",
          "Surname": "TestLastInf"
        }
      }
    ]
  }'

Responses

OK - Successful Response - 200

Bodyapplication/json
TravelerResponseobject(TravelerResponse)

The response of a Traveler endpoint request; returns the system-generated traveler identifier. This identifier must be sent in any subsequent traveler-specific requests, such as ticketing and seat assignment.

Response
{ "TravelerResponse": { "Traveler": { "@type": "TravelerIdentifier", "id": "string", "TravelerRef": "string", "Identifier": {} }, "@type": "response", "transactionId": "49f58f5f-c443-43b4-9f5d-be405fd00a01", "traceId": "TraceID_123456", "correlationId": "48fb4cd3-2ef6-4479-bea1-7c92721b988c", "reservationStatus": "Success", "Result": { "@type": "Result", "status": "Complete", "Error": [], "Warning": [] }, "Identifier": { "value": "A0656EFF-FAF4-456F-B061-0161008D7C4E", "authority": "TVPT" }, "NextSteps": { "baseURI": "string", "id": "5", "NextStep": [] }, "ReferenceList": [ {} ], "CurrencyRateConversion": [ {} ], "Pagination": { "@type": "Pagination", "page": 1, "pageSize": 20, "totalPages": 5, "totalItems": 100 } } }