Description
This API is used to disburse loan to customer.
How it Works
Parameters
This part needs to be in body of the request.
{
"application_id" : "367297",
"customer_ip" : "123.234.233.23",
"order_number" : "23353"
}
Sample Request
POST {API_HOST}/api/v1/disbursements
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID}
X-IBM-client-secret: {YOUR_CLEINT_SECRET}
Authorization: Bearer {access_token}
Content-Type: application/json
Sample Response
{
"data": {
"disbursed": true
},
"info": [
{
"code": "MSG",
"message": "Informational message"
}
]
}
If disbursed field value is true, then disbursement will be succesful.