Disburse Loan

To disburse a loan, send a POST request to the endpoint:

POST /api/loanaccount/v1/disburseloan

The request body requires only the loanAccountNumber, for disbursement. A successful request will return a disbursement data, and a success message in the response, allowing for reference to the disbursed loan. This process facilitates the disbursement of loans to customers and streamlines the management of loan-related activities.

Headers

Name
Value

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Body

Name
Data Type (length)
Required
Description

loanAccountNumber

string

The unique number of the loan account to be disbursed

Here is an example request and response with a sample payload sent to the endpoint in Curl format.

Sample Request
curl --location -g '{{baseurl}}/api/loanaccount/v1/disburseloan' \
--header 'Authorization: bearer {token}' \
--header 'request-reference: {unique_reference}' \
--header 'Content-Type: application/json' \
--data '{
  "loanAccountNumber": "string"
}'
Respose: 200
{
  "status": true,
  "message": "string",
  "data": {
    "statusCode": "string",
    "referenceNumber": "string",
    "instrumentNumber": "string",
    "duration": "string"
  }
}

Last updated