Skip to main content
GET
/
v1
/
transfers
/
reconciliation
/
pending
List pending reconciliation transfers
curl --request GET \
  --url https://plugin-br-bank-transfer.sandbox.lerian.net/v1/transfers/reconciliation/pending \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Tenant-Id: <x-tenant-id>'
{ "items": [ { "transferId": "019c96a0-ab10-7cde-f1a2-0e1f2a3b4c5d", "type": "TED_OUT", "status": "PROCESSING", "controlNumber": "202602010001", "flaggedAt": "2026-02-01T15:35:00-03:00", "failureCode": "JD_UNAVAILABLE", "failureClass": "unknown_state", "counterpartySystem": "JD_SPB" } ], "failureConcentration": [ { "failureCode": "JD_UNAVAILABLE", "count": 12 } ], "pagination": { "nextCursor": "<string>", "hasMore": true, "totalCount": 1 } }

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. The token must include a tenantId claim that matches the X-Tenant-Id header.

Headers

X-Tenant-Id
string<uuid>
required

Organization ID used as the tenant identifier. All data is scoped to this organization. Must match the JWT tenantId claim when authentication is enabled.

Query Parameters

limit
integer
default:50

Maximum number of records to return (1–200, default 50).

Required range: 1 <= x <= 200
offset
integer
default:0

Number of records to skip for offset-based pagination.

Required range: x >= 0
cursor
string

Opaque cursor for cursor-based pagination. When provided, offset is ignored.

Response

Pending reconciliation list returned successfully.

items
object[]

Transfers requiring manual reconciliation.

failureConcentration
object[]

Breakdown of failure codes across pending items.

pagination
object

Pagination metadata.