Skip to main content
POST
/
v1
/
transfers
/
webhooks
/
dlq
/
{messageId}
/
retry
Retry DLQ Message
curl --request POST \
  --url https://plugin-br-bank-transfer.sandbox.lerian.net/v1/transfers/webhooks/dlq/{messageId}/retry \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Idempotency: <x-idempotency>' \
  --header 'X-Organization-Id: <x-organization-id>'
{
  "status": "retried",
  "messageId": "019c96a0-d1d2-7e3f-4a5b-6c7d8e9f0a1b"
}

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-Organization-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.

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

Path Parameters

messageId
string
required

The DLQ message identifier to retry.

Response

Indicates that the DLQ message was re-published to the main queue.

status
enum<string>
required

Retry outcome label.

Available options:
retried
Example:

"retried"

messageId
string
required

Echoes the DLQ message identifier that was re-published.

Example:

"019c96a0-d1d2-7e3f-4a5b-6c7d8e9f0a1b"