Slack Notifications

Receive notifications in Slack when pentests complete.

Setup

  1. Create an Incoming Webhook in your Slack workspace
  2. Go to Dashboard > Account > Integrations
  3. Add the Slack integration with your webhook URL

Via API

Terminal
curl -X POST https://turbopentest.com/api/integrations \
  -H "X-API-Key: $TURBOPENTEST_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "slack",
    "config": {
      "webhookUrl": "https://hooks.slack.com/services/T.../B.../..."
    }
  }'

What you receive

When a pentest completes, you get a message with:

  • Target URL
  • Number of findings by severity
  • Link to the full results

Testing the integration

Terminal
curl -X POST https://turbopentest.com/api/integrations/test \
  -H "X-API-Key: $TURBOPENTEST_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "slack"}'

On this page