Skip to main content

Update Slack Webhooks

The follwing mutation updates a slack webhook:

Operation: mutation UpdateSlackWebhook($slackWebhookId: ObjectID!, $alertTypes: [SlackAlertType!]!) { updateAutomatorSlackWebhook(input: { slackWebhookId: $slackWebhookId, alertTypes: $alertTypes }) { slackWebhook { id url alertTypes } } }
UpdateSlackWebhookTry in Explorer
GraphQL
mutation UpdateSlackWebhook($slackWebhookId: ObjectID!, $alertTypes: [SlackAlertType!]!) {
updateAutomatorSlackWebhook(input: {
slackWebhookId: $slackWebhookId,
alertTypes: $alertTypes
}) {
slackWebhook {
id
url
alertTypes
}
}
}