How It Works
AcuView integrations follow a straightforward sequence. First, your application
authenticates and establishes a session using POST
/api/Authentication/login. The returned token is used to authorize all
subsequent API calls.
Once authenticated, your application creates a loan record by submitting borrower information and the requested loan amount to AcuView. When the loan record is created, AcuView compares the submitted data against known records in the network and returns verification results along with analysis of recent borrower activity across defined time windows.
After a loan record exists, you can retrieve and manage it throughout its lifecycle. Loan
records can be listed using GET /api/LoanRecord with pagination and
sorting, retrieved individually using GET /api/LoanRecord/{id}, and
updated using POST/api/LoanRecord/manage-loan-application to reflect
approval, denial, payoff, or write-off decisions.
When deeper borrower investigation is required, you can retrieve historical loan data
using GET/api/LoanRecord/loan-history, which returns status history
and, when applicable, payment details associated with the loan lifecycle. For
period-based analysis of borrower activity, you can call
GET/api/v1/LoanRecord/record-period?id=<recordId>, which returns
activity grouped into standard periods such as 48 Hours, 1 Week, 1 Month, and up to 2
Years. This enables time-bucketed interpretation of borrower behavior and recency.
