curl --location 'http://127.0.0.1:8000/api/incidents' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'{
"data": [
{
"id": 1,
"alert": "Suspicious multiple login attempts.",
"assigned_to": "analyst",
"title": "Critical Brute Force Incident",
"severity": "high",
"status": "open",
"started_at": "2026-06-05 13:46:37",
"closed_at": "not closed"
},
{
"id": 2,
"alert": "Potential SQL injection attack.",
"assigned_to": "admin",
"title": "SQL Injection Investigation",
"severity": "critical",
"status": "in_progress",
"started_at": "2026-06-05 13:46:37",
"closed_at": "not closed"
}
]
}