Use this file to discover all available pages before exploring further.
Incidents in Scrubbe represent a discrete failure or degradation event in your systems. Each incident ticket tracks the full lifecycle — from the moment an alert fires to the final post-mortem — giving your team a single source of truth throughout the response. This guide walks you through the core operations: creating a ticket, moving it through its status states, adding comments, and marking it resolved.
When an alert fires or an engineer spots an issue, open a ticket immediately. Providing complete context up front — including techDescription, impactSummary, and blastRadius — helps responders act faster and feeds Ezra’s AI analysis.
curl -X POST https://api.scrubbe.io/api/v1/incident-ticket \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "summary": "Payment service down", "priority": "CRITICAL", "status": "OPEN", "source": "MONITORING", "serviceArea": "payments", "environment": "production", "region": "us-east-1", "assignedToEmail": "oncall@example.com", "description": "The payment gateway is returning 500 errors.", "techDescription": "Redis connection pool exhausted.", "impactSummary": "All checkout flows are failing.", "blastRadius": "100% of users attempting checkout" }'
Use PUT /api/v1/incident-ticket/:id to change any field on an existing ticket — reassign it, escalate the priority, or advance the status as your response progresses.
Once the issue is contained, mark the incident resolved. You can resolve it directly or use the customer knowledge base endpoint to attach a resolution note that gets shared with affected customers.
Standard resolve
Resolve with customer KB
curl -X POST https://api.scrubbe.io/api/v1/incident-ticket/resolve/<id> \ -H "Authorization: Bearer <token>"
curl -X POST https://api.scrubbe.io/api/v1/incident-ticket/resolve/customer-kb/<id> \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "resolutionNote": "The Redis connection pool has been expanded. Checkout is fully operational." }'
After resolving an incident, use the Post-mortems guide to generate an AI-assisted five-whys analysis and stakeholder report.