Disable a subscription webhook
Use the deleteWebhook
mutation to mark a subscription webhook as disabled.
The following input fields are provided:
id
- Required. The identifier of the webhook.
Example Mutation
mutation deleteWebhook($input: DeleteWebhookInput!) {
deleteWebhook(input: $input) {
deleted
}
}
Example Input Variable
{
"input" : {
"id": "MDc6V2ViaG9vazEyNQ"
}
}