API Reference
Postmortems
Runframe V1 postmortems API. Create and retrieve postmortems for incidents.
Use this surface to create postmortems and fetch the existing postmortem for an incident.
Get Postmortem
GET /api/v1/postmortems?incident_id=<incident_uuid_or_number>| Parameter | Type | Description |
|---|---|---|
incident_id | string | Required incident UUID or incident number |
Response:
{
"success": true,
"data": {
"id": "uuid",
"postmortem_number": "PM-2026-001",
"incident_id": "uuid",
"level": "standard",
"status": "draft",
"summary": "Short summary",
"created_at": "2026-04-19T12:00:00.000Z"
}
}Create Postmortem
POST /api/v1/postmortemsincident_id is required. Other fields depend on your organization's configured postmortem level.
Status codes:
| Code | Meaning |
|---|---|
201 | Postmortem created |
400 | Required fields missing for your postmortem level |
404 | Incident not found |