Skip to content

List loan disbursements

Request

Retrieve the disbursements recorded against a loan, including amounts (in whole cents), recipients, payment methods, and status.

Security
ApiKeyAuth
Path
idstringrequired
curl -i -X GET \
  'https://api.pioneerft.com/api/public/v1/loans/{id}/disbursements' \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>'

Responses

Loan disbursements

Bodyapplication/json
dataArray of objects(PublicDisbursement)
Response
{ "data": [ { "id": "string", "loanId": "string", "category": "string", "centsAmount": -9007199254740991, "recipientName": "string", "recipientType": "string", "paymentMethod": "string", "status": "string", "notes": "string", "createdAt": "string" } ] }