Skip to main content
POST
/
v1
/
transfers
/
reconciliation
/
tick
Trigger reconciliation sweep
curl --request POST \
  --url https://plugin-br-bank-transfer.sandbox.lerian.net/v1/transfers/reconciliation/tick \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Idempotency: <x-idempotency>'
{
  "tenantId": "11111111-1111-1111-1111-111111111111",
  "outcome": "success",
  "sweptCount": 3,
  "durationMs": 125
}

Documentation Index

Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

X-Idempotency
string
required

Required idempotency key for safe retries. Use a UUID v4 or unique business identifier. If the same key is sent again and the original request was already processed, the cached response is returned.

See Retries and idempotency for details.

Maximum string length: 255

Response

Reconciliation sweep triggered successfully.

tenantId
string<uuid>

Tenant processed by the reconciliation sweep, when available.

Example:

"11111111-1111-1111-1111-111111111111"

outcome
string

Result of the reconciliation sweep.

Example:

"success"

sweptCount
integer

Number of transfers processed by the sweep.

Example:

3

durationMs
integer<int64>

Sweep duration in milliseconds.

Example:

125