Replays a webhook subscription.This causes any matching events to be requeued for delivery.Resending occurs asynchronously in a background task.
Arguments
| Name | Description |
|---|---|
ReplayWebhookSubscription_SubscriptionInput! | The details of the webhook subscription to be replayed. |
[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! | The details of the webhook subscription to have its messages redelivered. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: ReplayWebhookSubscriptionInput!) {
replayWebhookSubscription(input: $input) {
webhookSubscription {
hirerId {
value
}
id {
value
}
schemeId
}
}
}