Appraisal: POST

Create a new Appraisal.

Request - POST 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
{
"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,
"Valuers": [
{
long
}
]
}

Response

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

Example response:

HTTPS 200 OK
Content-Type: appraisal/json
{
"appraisal": [
{
"appraisalid": long,
"propertyId": long,
"isSales": boolean
"addedDate": "date",
"ModifiedDate": "date",
"AppointmentBooked": boolean
"appointment_Date": "date",
"appointment_duration": int,
"InternalNotes": "string",
"ClientAdvice": "string",
"OutcomeStatusId": boolean
"OutcomeNotes": "string",
"AppointmentConfirmed": boolean
"Valuation": {
"ValuationFrom": long,
"ValuationTo": long,
"ValuationOwner": "string",
"ValuationSuggested": long,
"ValuationFeeAmount": long,
"ValuationAmountFixed":long,
},
"branch": {
"branchname": "string",
"branchid": long
}
}
]
}