curl --location --request PUT 'http://127.0.0.1:8000/api/incident_comments/3' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
--data '{
"comment": "User permissions and recent account activity are being reviewed."
}'{
"message": "Incident comment updated successfully",
"data": {
"id": 3,
"incident": "Privilege Escalation Investigation",
"user": "viewer",
"comment": "User permissions and recent account activity are being reviewed."
}
}