Webhook Integration Guide¶
Webhooks allow AppSec+ to notify external systems when key events occur.
Supported Events¶
- Scan started
- Scan completed
- New vulnerability discovered
- Vulnerability status changed
- Policy violated
Creating a Webhook¶
- Go to Settings → Webhooks
- Click Add Webhook
- Provide:
- Endpoint URL
- Secret token
- Events to subscribe to
Sample Webhook Payload¶
{
"event": "scan.completed",
"applicationId": "12345",
"severity": {
"critical": 1,
"high": 4,
"medium": 7
},
"timestamp": "2025-01-01T12:00:00Z"
}