Use this endpoint to retrieve a paginated list of transfers. You can filter by type, status, date range, and amount range. The default page size is 50 items, with a maximum of 100. Only returns transfers belonging to the same organization.
JWT Bearer token authentication. The token must include a tenantId claim that matches the X-Organization-Id header.
Organization ID used as the tenant identifier. All data is scoped to this organization. Must match the JWT tenantId claim when authentication is enabled.
Filter results by transfer type. The type of transfer. TED_OUT is an outgoing transfer to an external bank via JD SPB. TED_IN is an incoming transfer from an external bank. P2P is a peer-to-peer transfer within the same institution (same ISPB).
TED_OUT, TED_IN, P2P "TED_OUT"
Filter results by transfer status. The current status of the transfer. For TED OUT and P2P transfers, the flow is CREATED, PENDING, PROCESSING, and then COMPLETED, REJECTED, or FAILED. Transfers can be CANCELLED while in CREATED or PENDING status. For TED IN transfers, the flow is RECEIVED and then COMPLETED or REJECTED.
CREATED, PENDING, PROCESSING, COMPLETED, REJECTED, FAILED, CANCELLED, RECEIVED "COMPLETED"
The start of the date range filter in ISO 8601 format.
The end of the date range filter in ISO 8601 format.
The minimum transfer amount to include in the results.
x >= 0.01The maximum transfer amount to include in the results.
x <= 999999.99The page number to retrieve, starting from 1.
x >= 1The number of items per page.
1 <= x <= 100The field to sort results by.
createdAt, amount, status The sort order for results.
ASC, DESC