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>'
{
  "outcome": "success",
  "sweptCount": 3,
  "durationMs": 125
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. The tenantId is derived from the bearer token or authenticated request context and is not supplied through X-Organization-Id.

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.

outcome
enum<string>

Result of the reconciliation sweep. skipped_operating_window indicates the sweep did not run because it was triggered outside the operating-hours window.

Available options:
success,
skipped_operating_window
Example:

"success"

sweptCount
integer

Number of transfers processed by the sweep.

Example:

3

durationMs
integer<int64>

Sweep duration in milliseconds.

Example:

125