Appraisal: post

Save online booking appraisal.

Request - POST https://api-uat.vtopenview.com/saveOnlineBookingAppraisal

You will need to supply a request body with this method.
You will need to include your access token upon making a request. For more information, see the authentication and authorization page.

Example request with authorization:

curl -- POST Base URI: https://api-uat.vtopenview.com/saveOnlineBookingAppraisal
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Request Body
Example request body:

Content-Type: application/json
{
"appraisal_request":
{
"foreName": "string",
"surName": "string",
"phone": "string",
"email": "string",
"eventId": integer,
"callBack": boolean,
"aggremment": "string",
"branchId": "GUID",
"postCode": "string",
"address": {
"HouseNo": "string",
"Address1": "string",
"Address2": "string",
"Town": "string",
"County": "string",
"Latitude": "string",
"Longitude": "string",
"CountryId": "string",
"GeocodingVerified": "string",
},
"sales": boolean,
"lettings": boolean
}
}

Response

If successful, this method returns a response body with the following structure:

Example response:

HTTPS 200 OK
Content-Type: application/json
{
"appraisalId": long,
}