Skip to main content

Retrieve Slack Webhooks

The following query gets the slack webhooks for a given test suite:

query GetTestSuiteSlackWebhooks($testSuiteId: ObjectID!) {
node(id: $testSuiteId) {
... on TestSuite {
slackWebhooks(last: 100) {
nodes {
id
url
alertTypes
}
}
}
}
}

Try in explorer