A borrower verification session represents the question and response flow for an agent to verify the identity of a human who purports to be a particular borrower. For instance, upon receiving a phone call, an agent would initiate a borrower verification, ask the questions to the borrower, and enter their responses. A set of responses are either correct (thus verifying the human as the borrower) or they are incorrect.
The agent is never shown the correct answers, so privacy risks are minimized and socially engineered security attacks are mitigated.
Retrieve all verifications—optionally filtering. Note that unlike most Peach "get all" endpoints, the verifications get all endpoint returns items in a reverse chronological list, since almost all interesting verifications are those which happened in the recent past.
- oauth2
- bearerAuth
- apiKeyHeader
curl -i -X GET \
'https://sandboxapi.peach.finance/api/people/{personId}/verifications?limit=25&startingAfter=string&endingBefore=string&status=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "count": 0, "status": 0, "data": [ { … } ] }