API Endpoints
Repay Loan
Allows customers to make a partial repayment for their loan.
POST
Customers can use this endpoint to record a partial repayment for their loan. This is typically used after making a bank transfer to the repayment account.
Before making a repayment, customers should:
- Get repayment instructions using
GET /repayment-instructions/{loan-application-id} - Make a bank transfer to the provided account with the repayment reference
- Record the repayment using this endpoint
Request Headers
The JWT Access Token obtained from the
/login or /refresh-token endpoint.Unique idempotency key for the request to prevent duplicate processing.
The date and time at which the request was initiated (ISO 8601 format).
The IP address of the customer making the request.
Unique identifier for the interaction/session.
Must be
application/json.Path Parameters
The unique identifier (UUID) of the user making the repayment. This must match the authenticated user.
Request Body
The amount to be repaid. Must be greater than zero and cannot exceed the total payable amount.
The unique identifier (UUID) of the customer making the repayment. Must match the authenticated user.
The unique identifier (UUID) of the loan account being repaid.
The unique identifier (UUID) of the bank account from which the payment was made. This must be a bank account that belongs to the customer.
The payment reference number from the bank transfer. This should match the reference provided in the repayment instructions.
The date when the payment was made (ISO 8601 format). If not provided, the current date is used.
Optional description or narration for the payment.
Response
Returns confirmation of the repayment submission with details.Overall status of the API request.
Repayment confirmation details.
Code Examples
Error Responses
Status will be
FAILED if an error occurs.Error message describing what went wrong.
Common Error Scenarios
- Loan Not Found: No active loan found for the provided customer ID
- Loan Closed: The loan is already closed and cannot be repaid
- Unauthorized: The customer ID does not match the authenticated user
- Manual Repayment Not Allowed: The loan uses third-party collection and manual repayments are not permitted
- Invalid Amount: Repayment amount is zero, negative, or exceeds total payable
- Bank Account Mismatch: The bank account does not belong to the customer
- Missing Loan Application: Loan application ID is missing for the customer loan record
Repayment Flow
See the complete repayment flow documentation
