appraisals: list

Return information about all appraisals in a company. You can filter by Appraisal Id, Branch Id, Property Id and Appraisal Modified Date.

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

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 -- GET Base URI: https://api-uat.vtopenview.com/appraisals?branchid={branchid}&propertyId={propertyId}&modifiedDate={MM/DD/YYYY}
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Query Parameters
appraisalId
long
The Appraisal's ID

branchid
int
The Branch's ID

propertyId
long
The Property's ID

modifiedDate
string
The Appraisal modified date. Format: MM/DD/YYYY
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": "datetime",
"Valuers": [
{
"Id": long,
"Name": "string"
}
],
"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
}
}
]
}