Deletes an existing webhook subscription.
Arguments
| Name | Description |
|---|---|
DeleteWebhookSubscription_SubscriptionInput! | The details of the webhook subscription to be deleted. |
Result
DeleteWebhookSubscriptionPayload| Name | Description |
|---|---|
WebhookSubscription! | The details of the deleted webhook subscription. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: DeleteWebhookSubscriptionInput!) {
deleteWebhookSubscription(input: $input) {
webhookSubscription {
hirerId {
value
}
id {
value
}
schemeId
}
}
}