Was this helpful?
Set severity for one or more incidents
Array of incident counter IDs
Severity level
Severity set successfully
const response = await fetch('https://api.spike.sh/incidents/severity', { method: 'POST', headers: { "x-api-key": "text", "x-team-id": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "ids": [ "text" ], "severity": "sev1" }), }); const data = await response.json();