replayWebhookSubscription
MUTATION

Replays a webhook subscription.This causes any matching events to be requeued for delivery.Resending occurs asynchronously in a background task.

Arguments

Name
Description
The details of the webhook subscription to be replayed.
eventIds 
[String!]
List of event IDs to filter which events are to be replayed.This is an alternative to the filter argument, providing the ability to replay a list of specific events by their IDs. eventIds and filter cannot be specified in the same mutation.A maximum of 100 event IDs may be provided.
Additional fields to filter which events are to be replayed.This is an alternative to the eventIds argument, and allows replaying events within a designated time range. eventIds and filter cannot be specified in the same mutation.

Result

ReplayWebhookSubscriptionPayload
Name
Description
webhookSubscription* 
WebhookSubscription!
The details of the webhook subscription to have its messages redelivered.

Sample

GraphQL
mutation ($input: ReplayWebhookSubscriptionInput!) {
  replayWebhookSubscription(input: $input) {
    webhookSubscription {
      hirerId {
        value
      }
      id {
        value
      }
      schemeId
    }
  }
}