Fetches a paginated list of repayment records, allowing managers to view and track all loan repayments. Can be filtered by loan application ID to show repayments for a specific loan.
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).
x-fapi-customer-ip-address
The IP address of the customer making the request.
Unique identifier for the interaction/session.
Query Parameters
Optional filter to show repayments for a specific loan application.
Optional filter by repayment status. Options: PENDING_VERIFICATION, VERIFIED, REJECTED, ALL.
Page number for pagination (starts from 1).
Number of items per page (maximum recommended: 50).
Optional start date filter (ISO 8601 format) to show repayments from a specific date.
Optional end date filter (ISO 8601 format) to show repayments up to a specific date.
Code Examples
curl --location 'https://remitjunction.fincode.software/api/v6/services/admin/repayments/list?page=1&size=10&status=VERIFIED' \
--header 'X-Auth-Token: YOUR_JWT_ACCESS_TOKEN' \
--header 'x-idempotency-key: unique-key-12345' \
--header 'x-fapi-auth-date: 2024-01-15T10:30:00Z' \
--header 'x-fapi-customer-ip-address: 192.168.1.1' \
--header 'x-fapi-interaction-id: interaction-12345'
Repayments retrieved successfully