Skip to main content

Delete Slack Webhooks

The follwing mutation deletes a slack webhook:

Operation: mutation DeleteSlackWebhook($slackWebhookId: ObjectID!) { deleteAutomatorSlackWebhook(input: { slackWebhookId: $slackWebhookId }) { slackWebhook { id } } }
DeleteSlackWebhookTry in Explorer
GraphQL
mutation DeleteSlackWebhook($slackWebhookId: ObjectID!) {
deleteAutomatorSlackWebhook(input: {
slackWebhookId: $slackWebhookId
}) {
slackWebhook {
id
}
}
}