Was this helpful?
Creates an incident and sends alerts
Incident title
Additional metadata
Escalation ID
Integration token
Priority level
Severity level
Incident created successfully
const response = await fetch('https://api.spike.sh/incidents/create', { method: 'POST', headers: { "x-api-key": "text", "x-team-id": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "title": "text", "escalation": "text", "integration": "text" }), }); const data = await response.json();