Create a new issue with the specified properties.
Requires Bearer token authentication
Request Body
Issue class (must be valid issue class)
Issue priority (low, medium, high, critical)
Array of event IDs associated with this issue
Example
curl -X POST "https://api.garnet.ai/v1/issues" \
-H "Authorization: Bearer $GARNET_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"class": "crypto_miner",
"title": "Crypto mining detected",
"priority": "critical",
"event_ids": ["evt_123", "evt_456"]
}'