{ "title": "List Cases", "description": "Example response from GET /connect/api/v1/cases", "request": { "method": "GET", "url": "https://your-platform.stellarcyber.ai/connect/api/v1/cases?limit=10&status=open", "headers": { "Authorization": "Bearer {jwt_token}", "Content-Type": "application/json" } }, "response": { "status": 200, "body": { "data": [ { "id": "case-001", "name": "Suspicious Outbound Connection", "description": "Multiple endpoints attempting outbound connections to known malicious IPs", "status": "investigating", "priority": "high", "assignee": "analyst@example.com", "tenant_id": "tenant-001", "created_at": "2026-05-01T14:22:00Z", "updated_at": "2026-05-02T09:15:00Z", "alert_count": 12 }, { "id": "case-002", "name": "Lateral Movement Detected", "description": "Evidence of lateral movement between workstations in the finance department", "status": "open", "priority": "critical", "assignee": "soc-lead@example.com", "tenant_id": "tenant-001", "created_at": "2026-05-02T07:45:00Z", "updated_at": "2026-05-02T07:45:00Z", "alert_count": 5 } ], "total": 2, "limit": 10, "offset": 0 } } }