Version: AgWare Maven 2021.1.16.1952
Release Date: May 14, 2021
Download Link: Download Now
- A new API endpoint was added to query fields from the AppraisalXML of posted reports. The endpoint is:/api/Appraisals/{id}/XMLData
Where {id} is the AppraisalId of the Appraisal being queried. To query the data, POST one or more Name and Xpath pairs to the endpoint. Ex:
{
“name”: “LoanNumber”,
“xPath”: “(//Cell@ContextId=1371/@Text)1”
},
{
“name”: “APNSource1”,
“xPath”: “(/AgWareReport/Form@FormId=1501/Cell@CellSeq=16/@Text)1”
}
The Xpath field uses standard Xpath formatted queries. The Name field can be anything, and will be included in the result to identify the results of its accompanying Xpath query. Example result from the above query:
{
“LoanNumber”: “a123”,
“APNSource1”: null
}
- When doing a Rollback on a completed Valuation, the Valuation will be put into a Pending state if none of the Sale Comparisons have been deleted or modified since its original Valuation. Previously it was always put into the Requires Revaluation state. It will still get put into Requires Revaluation if a Sale has been changed.