Runframe
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>
ParameterTypeDescription
incident_idstringRequired 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/postmortems

incident_id is required. Other fields depend on your organization's configured postmortem level.

Status codes:

CodeMeaning
201Postmortem created
400Required fields missing for your postmortem level
404Incident not found