Appraisal: PUT
Update an existing Appraisal.
Request - PUT https://api-uat.vtopenview.com/appraisals/{apprasialId}
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 -- PUT Base URI: https://api-uat.vtopenview.com/appraisals/{apprasialId}
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"
Request Body
Example request body:
Content-Type: application/json
{
"AppraisalId": long,
"AppointmentBooked": boolean,
"AppointmentConfirmed": boolean,
"AppointmentDate": "datetime",
"AppointmentDuration": "string",
"ValuationFrom": decimal,
"ValuationTo": decimal,
"ValuationVendor": decimal,
"ValuationSuggested": decimal,
"ValuationFeeAmount": decimal,
"ValuationFeeAmountFixed": boolean,
"InternalNotes": "string",
"ClientAdvice": "string",
"OutcomeNotes": "string",
"UserId": long,
"PropertyId": long,
"IsSales": boolean,
"Valuers": [
{
long
}
]
}