POST api/ValidateQuote/{ref}
Validate the quote with the specified reference
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ref |
The quote reference |
string |
Required |
Body Parameters
The new tour search input parameters
QuoteValidationPostParamters| Name | Description | Type | Additional information |
|---|---|---|---|
| channel |
The sales channel, i.e. WEB, SCS, XML or API (defaults to WEB) |
string |
None. |
| ppToken |
The Phonepop session token associated with this reservation |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"channel": "sample string 1",
"ppToken": "sample string 2"
}
Response Information
Resource Description
ValidateQuoteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Unique quote reference |
string |
None. |
| response |
The response object |
QuoteValidation |
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:
{
"id": "sample string 1",
"response": {
"token": "sample string 1",
"stage": "sample string 2",
"stageURL": "sample string 3",
"priceChange": 1.1,
"quotePriceType": "sample string 4"
},
"status": {
"code": 1,
"message": "sample string 2"
},
"success": true,
"datestamp": "2026-08-03T20:32:23.6035877+01:00"
}