Skip to main content
GET
/
admin
/
repayments
/
list
List Repayments
curl --request GET \
  --url https://{tenant}.fincode.software/api/v6/services/admin/repayments/list
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.

Request Headers

X-Auth-Token
string
required
The JWT Access Token obtained from the /login or /refresh-token endpoint.
x-idempotency-key
string
required
Unique idempotency key for the request to prevent duplicate processing.
x-fapi-auth-date
string
required
The date and time at which the request was initiated (ISO 8601 format).
x-fapi-customer-ip-address
string
required
The IP address of the customer making the request.
x-fapi-interaction-id
string
required
Unique identifier for the interaction/session.

Query Parameters

loanApplicationId
string
Optional filter to show repayments for a specific loan application.
status
string
Optional filter by repayment status. Options: PENDING_VERIFICATION, VERIFIED, REJECTED, ALL.
page
number
default:"1"
Page number for pagination (starts from 1).
size
number
default:"10"
Number of items per page (maximum recommended: 50).
startDate
string
Optional start date filter (ISO 8601 format) to show repayments from a specific date.
endDate
string
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'

Query Parameters

page
integer
default:1
size
integer
default:10
loanApplicationId
string
status
string
startDate
string
endDate
string

Response

200

Repayments retrieved successfully