# Update Slack Webhooks https://api-docs.lumar.io/docs/protect/notifications/slack/update-slack-webhooks The follwing mutation updates a slack webhook: ```graphql mutation UpdateSlackWebhook($slackWebhookId: ObjectID!, $alertTypes: [SlackAlertType!]!) { updateAutomatorSlackWebhook(input: { slackWebhookId: $slackWebhookId, alertTypes: $alertTypes }) { slackWebhook { id url alertTypes } } } ```