Create a disbursement on a loan. centsAmount is in whole cents — 50000000 is $500,000.00.
Security
ApiKeyAuth
Enum:"borrower_proceeds""refinance""equipment_purchase""real_estate_purchase""payroll""broker_fee""sba_guarantee_fee""third_party_payment""other"
- 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 POST \
'https://api.pioneerft.com/api/public/v1/loans/{id}/disbursements' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"glAccountId": "string",
"category": "borrower_proceeds",
"centsAmount": 1,
"recipientName": "string",
"recipientType": "borrower",
"paymentMethod": "wire",
"notes": "string"
}'Response
{ "data": { "id": "string", "loanId": "string", "category": "string", "centsAmount": -9007199254740991, "recipientName": "string", "recipientType": "string", "paymentMethod": "string", "status": "string", "notes": "string", "createdAt": "string" } }