Create Your First Item

In AcuView, the first object you typically create is a loan record. Creating a loan record allows AcuView to evaluate borrower data, detect related activity across the network, and return verification and recency insights.

Before creating a loan record, you must authenticate using POST /api/Authentication/login and include the returned bearer token in your request headers. You can optionally confirm the active session by calling GET /api/Authentication/whoAmI, which returns details about the authenticated user and merchant.

Once authenticated, you create a loan record by submitting borrower information and the requested loan amount to the loan record creation endpoint. The response includes verification results, analysis of recent borrower activity, and a canonical loan record stored by AcuView and identified by a unique record ID.

Verify a Bank Account (optional)

Many integrations verify bank account details before creating a loan record. This step allows you to identify mismatches or missing account records early in the workflow.

Bank verification is performed using POST /api/AccountVerification/verifyBankAccount. This request checks the borrower’s account holder name, account number, and routing number, and returns a verification result of Match, Warning, or NotFound. The response also includes details about any detected mismatches.

Bank verification is optional but recommended when bank account accuracy is required as part of the loan decision process.