POST api/ValidateQuote/{ref}

Validate the quote with the specified reference

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ref

The quote reference

string

Required

Body Parameters

The new tour search input parameters

QuoteValidationPostParamters
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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:49:49.2338318+01:00"
}