Skip to main content
POST
/
v1
/
transfers
/
ted-in
/
poll
Trigger TED IN Poller
curl --request POST \
  --url https://plugin-br-bank-transfer.sandbox.lerian.net/v1/transfers/ted-in/poll \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Idempotency: <x-idempotency>'
{
  "tenantId": "11111111-1111-1111-1111-111111111111",
  "outcome": "success",
  "processed": 3
}

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

Indicates that the poll cycle completed. The outcome field reports the cycle result: success, empty, skipped_outside_window, skipped_busy, cancelled, or error.

tenantId
string<uuid>
required

The tenant for which the poll cycle ran.

Example:

"11111111-1111-1111-1111-111111111111"

outcome
enum<string>
required

Cycle outcome label. success and empty are terminal happy paths; skipped_* indicates the cycle did not run; cancelled and error indicate aborted work.

Available options:
success,
empty,
skipped_outside_window,
skipped_busy,
cancelled,
error
Example:

"success"

processed
integer
required

Number of inbound messages drained and processed during this cycle.

Required range: x >= 0
Example:

3