deleteWebhookSubscription
MUTATION

Deletes an existing webhook subscription.

Arguments

Name
Description
The details of the webhook subscription to be deleted.

Result

DeleteWebhookSubscriptionPayload
Name
Description
webhookSubscription* 
WebhookSubscription!
The details of the deleted webhook subscription.

Sample

GraphQL
mutation ($input: DeleteWebhookSubscriptionInput!) {
  deleteWebhookSubscription(input: $input) {
    webhookSubscription {
      hirerId {
        value
      }
      id {
        value
      }
      schemeId
    }
  }
}