GET api/Customer/{token}
Get the customer 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
CustomerResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
None. |
| response |
The response object |
Customer |
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": {
"linkedAgentID": 1,
"title": "sample string 2",
"firstName": "sample string 3",
"lastName": "sample string 4",
"dateOfBirth": "sample string 5",
"gender": "sample string 6",
"address1": "sample string 7",
"address2": "sample string 8",
"address3": "sample string 9",
"town": "sample string 10",
"county": "sample string 11",
"postCode": "sample string 12",
"country": "sample string 13",
"personalLandline": "sample string 14",
"personalMobile": "sample string 15",
"businessLandline": "sample string 16",
"businessMobile": "sample string 17",
"emailAddress": "sample string 18",
"marketingPreferences": {
"post": "sample string 1",
"email": "sample string 2",
"mobile": "sample string 3",
"landline": "sample string 4"
}
},
"status": {
"code": 1,
"message": "sample string 2"
},
"success": true,
"datestamp": "2026-08-03T20:33:54.8497833+01:00"
}