Loans

Disburse loan

post/v1/loan/disburse

Headers

accept-languagestring

Language of the response, supported languages: en-us, in

Request body

loanIdstring required

Loan Id

metadatastring

Metadata for loans. It can be used for reporting, reconciliation purpose.

Example request

{
  "loanId": "c3eb1619-ff24-4773-97d8-b05264621e60"
}

Response

Success

statusCodenumber required

The HTTP status code of the error

messagestring required

Human-readable message containing all available details about the operation

successboolean required

A boolean indicating whether this was a success response or an error response

Example response

{
  "data": {
    "loanTerm": 30,
    "loanType": "BNPL",
    "loanStatus": "active",
    "loanDueDate": "21 August 2023",
    "loanDueDateUTC": "2023-08-20T18:30:00.000Z",
    "dueDatePostGracePeriod": "24 August 2023",
    "dueDatePostGracePeriodUTC": "2023-08-23T18:30:00.000Z",
    "gracePeriodInDays": 3
  }
}