# Create Slack Webhooks https://api-docs.lumar.io/docs/protect/notifications/slack/create-slack-webhooks The follwing mutation creates a slack webhook for a test suite: ```graphql mutation CreateSlackWebhook($testSuiteId: ObjectID!, $url: String!) { createAutomatorSlackWebhook(input: { testSuiteId: $testSuiteId, url: $url }) { slackWebhook { id url alertTypes } } } ``` :::caution `testSuiteId` and `url` are the required fields. :::