Skip to main content
GET
List DLQ Messages

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.

Query Parameters

limit
integer
default:50

Maximum number of messages to return.

Required range: 1 <= x <= 200
offset
integer
default:0

Number of messages to skip for pagination.

Required range: x >= 0

Response

Indicates the DLQ messages page was returned successfully.

messages
object[]
required
totalCount
integer
required

Tenant-filtered message count visited during this scan. When hasMore is true this is a best-effort lower bound on the true DLQ depth for this tenant, not the full count.

Required range: x >= 0
Example:

1

returnedCount
integer
required

Number of messages in this page after offset and limit are applied.

Required range: x >= 0
Example:

1

returned
integer

Number of messages returned in this page.

Required range: x >= 0
Example:

1

hasNextPage
boolean

Whether there are more tenant-visible messages beyond this page.

Example:

false

hasMore
boolean

True when the inspector stopped scanning early after filling the current page.

Example:

false

warning
string

Set when pagination may be non-deterministic (e.g., concurrent access shifts ordering).

Example:

"pagination may be non-deterministic under concurrent access"