Alert Subscriptions
Webhook notifications for package events
Active Subscriptions
No alert subscriptions configured
Use the API to create webhook subscriptions
Create Subscription via API
Use the CCDA API to create alert subscriptions:
curl -X POST https://ccda-28sw5.ondigitalocean.app/api/alerts \
-H "Content-Type: application/json" \
-d '{
"purl": "pkg:pypi/requests",
"webhook_url": "https://your-webhook.example.com/alerts",
"events": ["new_vulnerability", "health_change"],
"min_severity": "HIGH"
}'