Disburse loan contract
Use case
Here, we will review how to make a manual loan contract disbursement.
Use case data
API parameters with values
An existing loan contract with the ID-1664282474 headerID.
...contracts/ID-1664282474/initialise-disbursement
The loan payout 5000 GBP
will be sent to the account that belongs to the borrower Trevor Harry Tuum.
"paymentInstruction": {
"beneficiaryName": "Trevor Harry Tuum",
"beneficiaryIban": "XX54XXXX99999000000000000001257",
"money": {
"amount": "5000",
"currencyCode": "GBP"
}
}
Sample API call
To make a manual loan disbursement, make the following API call.
https://loan-api.sandbox.tuumplatform.com/api/v1/contracts/{headerId}/initialise-disbursement
Sample request
Below is an example request body of the API call for making a manual disbursement.
{
"paymentInstruction": {
"beneficiaryName": "Trevor Harry Tuum",
"beneficiaryIban": "XX54XXXX99999000000000000001257",
"money": {
"amount": "5000",
"currencyCode": "GBP"
}
}
}
Sample response
Below you find an example response body to the API call above.
Result
The payment instructions ID-1664282486
were created. The loan will be disbursed to the borrower's bank account.
Last updated
Was this helpful?