Waiting for engine...
Skip to main content

eventStreamsMessageDelete

Delete the subscription backlog messages for given subscription backlog message Ids

Description: This mutation to permanently delete one or more backlog messages from a subscription. You must specify the environmentId, topicName, subscriptionName, and a list of messageId values.

Example:

mutation messageDelete {
eventStreamsMessageDelete(input: {
environmentId: "e0900205-7996-4795-9092-b9d2a21b77e9"
topicName: "UI-AutoTest-Dashboard-02"
subscriptionName: "testing-backlog-sub"
messageId: ["876780"]
})
}

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

Arguments

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