cURL
curl --request GET \ --url https://lms.bsa.ai/v1/borrowers/{id} \ --header 'Authorization: Bearer <token>'
{ "item": { "id": 123, "business_name": "<string>", "phone": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "country": "<string>", "email": "jsmith@example.com", "address": "<string>", "type": "<string>", "credit_score": 123, "region": "<string>" }, "success": true }
Returns a single borrower by their ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response with borrower details.
Show child attributes
true