# Retrieve Slack Webhooks https://api-docs.lumar.io/docs/protect/notifications/slack/retrieve-slack-webhooks The following query gets the slack webhooks for a given test suite: ```graphql query GetTestSuiteSlackWebhooks($testSuiteId: ObjectID!) { node(id: $testSuiteId) { ... on TestSuite { slackWebhooks(last: 100) { nodes { id url alertTypes } } } } } ```