Skip to main content
POST
Customers can use this endpoint to settle their loan completely by paying the remaining outstanding balance in one transaction.

Request Headers

string
required
The JWT Access Token obtained from the /login or /refresh-token endpoint.
string
required
Unique idempotency key for the request to prevent duplicate processing.
string
required
The date and time at which the request was initiated (ISO 8601 format).
string
required
The IP address of the customer making the request.
string
required
Unique identifier for the interaction/session.
string
default:"application/json"
required
Must be application/json.

Request Body

string
required
The unique identifier (UUID) of the loan application to pay off.
string
required
Method of payment. Options: WALLET, BANK_TRANSFER, CARD, etc.
string
Transaction PIN for authorization (if required).
number
Optional payoff amount. If not provided, the system will calculate the full outstanding balance.

Response

Returns confirmation of the loan payoff with final settlement details.
string
default:"SUCCESS"
Overall status of the API request.
object
Payoff confirmation details.

Code Examples