Skip to main content
POST

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

Body

application/json

Optional resume options. An empty body re-arms the poller and leaves the reconciliation gap open.

Optional body for a TED IN poller resume. All fields are optional; an empty body re-arms the poller and leaves the reconciliation gap open.

acknowledge
boolean
default:false

When true, mark the current latch's reconciliation gap resolved after the poller is re-armed. Defaults to false so the gap stays OPEN and remains visible for review.

Example:

false

note
string

Operator annotation stamped onto the resolved gap when acknowledge is true. Ignored otherwise.

Maximum string length: 500
Example:

"verified against the JD cabine; no inbound message lost"

Response

Indicates that the resume attempt completed. resumed is true when a latched or dead poller was re-armed and false for the healthy no-op. gapResolved is true only when acknowledge was requested AND the gap row was successfully marked resolved. reason is the state resumed from (receive_state_unknown, panic, auth_failure) or not_latched for the no-op.

resumed
boolean
required

true when a latched or dead poller was re-armed; false for the healthy no-op.

Example:

true

gapResolved
boolean
required

true only when acknowledge was requested AND the gap row was successfully marked resolved.

Example:

false

reason
enum<string>
required

The poller state that was resumed from. not_latched indicates the idempotent no-op.

Available options:
receive_state_unknown,
panic,
auth_failure,
not_latched
Example:

"receive_state_unknown"

tenantId
string<uuid>

Resolved tenant identifier. Omitted in single-tenant deployments.

Example:

"11111111-1111-1111-1111-111111111111"