Update Slack Webhooks
The follwing mutation updates a slack webhook:
UpdateSlackWebhookTry in Explorer
GraphQL
mutation UpdateSlackWebhook($slackWebhookId: ObjectID!, $alertTypes: [SlackAlertType!]!) {
updateAutomatorSlackWebhook(input: {
slackWebhookId: $slackWebhookId,
alertTypes: $alertTypes
}) {
slackWebhook {
id
url
alertTypes
}
}
}