Waiting for engine...
Skip to main content

eventStreamsDeadLetterQueueMessageDelete

Delete the dead letter queue (DLQ) subscription backlog messages for given subscription backlog message Ids

Description: This mutation to remove one or more messages from the DLQ backlog of a subscription. This is typically done after handling or acknowledging failed messages.

Example:

mutation messageDeleteDLQ {
eventStreamsDeadLetterQueueMessageDelete(input: {
environmentId: "e0900205-7996-4795-9092-b9d2a21b77e9"
topicName: "UI-AutoTest-Dashboard-02"
subscriptionName: "testing-dlq-sub"
messageId: ["81978"]
})
}

eventStreamsDeadLetterQueueMessageDelete(
input: EventStreamsMessagesDeleteInput!
): [ID!]

Arguments

eventStreamsDeadLetterQueueMessageDelete.input ● EventStreamsMessagesDeleteInput! non-null input event-streams-admin

Type

ID scalar miscellaneous

The ID scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.

On this Page