Calseta is under active development. APIs and features may change. We welcome feedback and contributions on GitHub.
cURL
curl --request GET \ --url https://api.example.com/v1/alerts/{alert_uuid}/relationship-graph
{ "data": { "alert": { "uuid": "<string>", "title": "<string>", "severity": "<string>", "status": "<string>", "source_name": "<string>", "occurred_at": "2023-11-07T05:31:56Z", "tags": [ "<string>" ] }, "indicators": [ { "uuid": "<string>", "type": "<string>", "value": "<string>", "malice": "<string>", "first_seen": "2023-11-07T05:31:56Z", "last_seen": "2023-11-07T05:31:56Z", "is_enriched": true, "enrichment_summary": {}, "total_alert_count": 123, "sibling_alerts": [ { "uuid": "<string>", "title": "<string>", "severity": "<string>", "status": "<string>", "source_name": "<string>", "occurred_at": "2023-11-07T05:31:56Z", "tags": [ "<string>" ] } ] } ] }, "meta": {} }
Return the alert-indicator relationship graph.
Includes the current alert, its indicators, and for each indicator the other alerts it appears in (capped by sibling_limit).
1 <= x <= 50
Successful Response
Complete graph data returned by the relationship-graph endpoint.
Show child attributes