List all drawdowns for a LOC
Retrieve all drawdowns for a LOC
GET https://sandbox-api.nanol.com/v1/users/{user_id}/loc/{loc_id}/disbursements
Returns an array of objects, with each object representing a drawdown object for a specific LOC
Path Parameters
Name
Type
Description
user_id*
string
The uuid of the user
loc_id*
string
The uuid of the LOC
[
{
"id": 178,
"amount": 100.0,
"description": null,
"effective_date": "2024-04-22",
"borrower_bank_account_uuid": "726743ce-e74f-4cd4-ab82-e96769114e7e"
},
{
"id": 174,
"amount": 100.0,
"description": "Netflix subscription",
"effective_date": "2024-04-21",
"borrower_bank_account_uuid": "726743ce-e74f-4cd4-ab82-e96769114e7e"
},
{...}
]{
// Response
}Last updated