Retrieve the disbursements recorded against a loan, including amounts (in whole cents), recipients, payment methods, and status.
Security
ApiKeyAuth
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/loans/{id}/disbursements
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/loans/{id}/disbursements
curl -i -X GET \
'https://api.pioneerft.com/api/public/v1/loans/{id}/disbursements' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>'Response
{ "data": [ { "id": "string", "loanId": "string", "category": "string", "centsAmount": -9007199254740991, "recipientName": "string", "recipientType": "string", "paymentMethod": "string", "status": "string", "notes": "string", "createdAt": "string" } ] }