GET api/PaxDetails/{token}
Get the passengers for the specified tour search
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PassengerResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
None. |
| response |
The response object |
Collection of Passenger |
None. |
| status |
The response status |
ResponseStatus |
None. |
| success |
An indication that the request was successfully completed or failed |
boolean |
None. |
| datestamp |
The date and time that the request was completed |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"response": [
{
"Id": "sample string 1",
"title": "sample string 2",
"firstName": "sample string 3",
"lastName": "sample string 4",
"dateOfBirth": "sample string 5",
"gender": "sample string 6",
"type": "sample string 7",
"isLead": true,
"accommodations": [
"sample string 1",
"sample string 2"
],
"insurances": {
"travel": true,
"excesswaiver": true
},
"medicalFormRequired": "sample string 9",
"dietaryIssues": [
"sample string 1",
"sample string 2"
],
"dietaryIssueOther": "sample string 10",
"dinnerSitting": "sample string 11",
"tableSize": 1,
"complimentaryUpgrade": "sample string 12"
},
{
"Id": "sample string 1",
"title": "sample string 2",
"firstName": "sample string 3",
"lastName": "sample string 4",
"dateOfBirth": "sample string 5",
"gender": "sample string 6",
"type": "sample string 7",
"isLead": true,
"accommodations": [
"sample string 1",
"sample string 2"
],
"insurances": {
"travel": true,
"excesswaiver": true
},
"medicalFormRequired": "sample string 9",
"dietaryIssues": [
"sample string 1",
"sample string 2"
],
"dietaryIssueOther": "sample string 10",
"dinnerSitting": "sample string 11",
"tableSize": 1,
"complimentaryUpgrade": "sample string 12"
}
],
"status": {
"code": 1,
"message": "sample string 2"
},
"success": true,
"datestamp": "2026-08-03T20:56:29.182899+01:00"
}