List messages in the DLQ
List and paginate through all messages currently inside the DLQ
List all messages currently inside the DLQ
Request
By providing a cursor you can paginate through all of the messages in the DLQ
Filter DLQ messages by message id.
Filter DLQ messages by url.
Filter DLQ messages by url group.
Filter DLQ messages by schedule id.
Filter DLQ messages by queue name.
Filter DLQ messages by API name.
Filter DLQ messages by starting date, in milliseconds (Unix timestamp). This is inclusive.
Filter DLQ messages by ending date, in milliseconds (Unix timestamp). This is inclusive.
Filter DLQ messages by HTTP response status code.
Filter DLQ messages by IP address of the publisher.
The number of messages to return. Default and maximum is 100.
The sorting order of DLQ messages by timestamp. Valid values are “earliestFirst” and “latestFirst”. The default is “earliestFirst”.
Response
A cursor which you can use in subsequent requests to paginate through all events. If no cursor is returned, you have reached the end of the events.
A unique identifier for this message.
The URL Group (topic) name if this message was sent to a URL Group.
The endpointName of the message if the endpoint is given a name within the URL Group.
The URL to which the message should be delivered.
The HTTP method to use for the message.
The HTTP headers sent to your API.
The body of the message if it is composed of utf8 chars only, empty otherwise.
The base64 encoded body if the body contains a non-utf8 char only, empty otherwise.
The number of retries that should be attempted in case of delivery failure.
The unix timestamp in milliseconds before which the message should not be delivered.
The unix timestamp in milliseconds when the message was created.
The url where we send a callback each time the message is attempted to be delivered.
The url where we send a callback to after the message is failed
The scheduleId of the message if the message is triggered by a schedule
IP address of the publisher of this message.
The unique id within the DLQ. Use this to remove the message from the DLQ DELETE /v2/dlq/{dlqId}
The name of the queue if this message is enqueued on a queue
The http status code of the last failed deliver attempt.
The response header of the last failed deliver attempt.
The response body of the last failed deliver attempt if it is composed of utf8 chars only, empty otherwise.
The base64 encoded response body of the last failed deliver attempt if the response body contains a non-utf8 char only, empty otherwise.
Was this page helpful?