Integrations & Notification Channels
Configure inbound scanner ingestion (Wiz, AWS Security Hub, GCP SCC) and outbound ChatOps notification channels (Slack, Microsoft Teams, Google Chat) for interactive 1-click approvals.
YOUR INGESTION API KEY
Use this as the Bearer token in the Authorization header on all inbound requests to /ingest
sk_live_••••••••••••••••••••••••3f2aAuthorization: Bearer sk_live_••••••••••••••••••••••••3f2aSETUP STEPS
Wiz fires a native webhook on every finding match rule. Configure the URL + Bearer token in Wiz Integration settings.
- 1Go to Wiz Settings → Integrations → Webhooks
- 2Add endpoint: https://api.cloudrelo.com/ingest
- 3Set header: Authorization: Bearer sk_live_...
- 4Select event type: Findings (CRITICAL, HIGH)
- 5Save and test — Wiz POSTs directly
Wiz payload (raw)
{
"id": "wiz-f8a3c2d1",
"severity": "CRITICAL",
"type": "VULNERABILITY",
"resource": {
"id": "i-0a1b2c3d4e5f",
"type": "EC2_INSTANCE",
"region": "us-east-1",
"name": "api-prod-01"
},
"cve": "CVE-2024-3094",
"score": 10.0,
"status": "OPEN"
}normalize
CloudRelo internal format
// CloudRelo internal format
{
"finding_id": "cr-2024-a1b2c3",
"source": "WIZ", // or SECURITYHUB | SCC
"severity": "CRITICAL",
"cve": "CVE-2024-3094",
"score": 10.0,
"resource": {
"provider": "AWS",
"region": "us-east-1",
"instance_id": "i-0a1b2c3d4e5f",
"name": "api-prod-01"
},
"ingest_ts": "2026-08-30T21:00:00Z"
}