Delete Slack Webhooks
The follwing mutation deletes a slack webhook:
DeleteSlackWebhookTry in Explorer
GraphQL
mutation DeleteSlackWebhook($slackWebhookId: ObjectID!) {
deleteAutomatorSlackWebhook(input: {
slackWebhookId: $slackWebhookId
}) {
slackWebhook {
id
}
}
}