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

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

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"