Appraisal: PUT

Update an existing Appraisal.

Request - PUT https://api-uat.vtopenview.com/appraisals

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/appraisals
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Request Body
Example request body:

Content-Type: application/json
{
"appraisalId": long,
"isSales": boolean,
"startDate": "datetime",
"endDate": "datetime",
"houseNo": "string",
"address1": "string",
"address2": "string",
"town": "string",
"county": "string",
"postCode": "string",
"countryId": int,
"valuerUserIds": [
long
]
}

Response

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

Example response:

HTTPS 200 OK
Content-Type: application/json

{
"AppraisalId": long,
"PropertyId": long,
"AppointmentBooked": boolean,
"Appointment_Date": "datetime",
"Appointment_duration": int,
"ValuationFrom": decimal,
"ValuationTo": decimal,
"ValuationOwner": decimal,
"ValuationSuggested": decimal,
"ValuationFeeAmount": decimal,
"ValuationFeeAmountFixed": boolean,
"InternalNotes": "string",
"ClientAdvice": "string",
"OutcomeStatusName": "string",
"OutcomeNotes": "string",
"AppointmentConfirmed": boolean,
"Valuers": [
{
"id": long,
"name": "string"
}
],
"BranchName": "string",
"BranchId": long,
"IsSales": int,
"AddedDate": "date",
"ModifiedDate": "datetime"
}