curl --location 'http://127.0.0.1:8000/api/incident_comments' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
--data '{
"incident_id": 4,
"user_id": 2,
"comment": "Initial investigation started. User permissions and recent account activity are being reviewed."
}'{
"message": "Incident comment created successfully",
"data": {
"id": 3,
"incident": "Privilege Escalation Investigation",
"user": "analyst",
"comment": "Initial investigation started. User permissions and recent account activity are being reviewed."
}
}