Skip to main content
WEBHOOK
public_incident.postmortem_document_status_updated_v1
{
  "event_type": "public_incident.postmortem_document_status_updated_v1",
  "public_incident.postmortem_document_status_updated_v1": {
    "new_status": "complete",
    "postmortem_document": {
      "created_at": "2021-08-17T13:28:57.801578Z",
      "document_url": "https://app.incident.io/my-org/incidents/123/post-mortems/01GDZEW57FDA1K4S63MGMQ5DS9",
      "editors": [
        {
          "email": "lisa@incident.io",
          "id": "01FCNDV6P870EA6S7TK1DSYDG0",
          "name": "Lisa Karlin Curtis",
          "role": "viewer",
          "slack_user_id": "U02AYNF2XJM"
        }
      ],
      "exported_urls": [
        "https://www.notion.so/INC-123-sad-database",
        "https://docs.google.com/document/d/1234"
      ],
      "id": "01GDZEW57FDA1K4S63MGMQ5DS9",
      "incident_id": "01GBA8J19SMXQWPJMX3P2ESCVG",
      "status": "in_progress",
      "title": "INC-123: Database is sad",
      "updated_at": "abc123"
    },
    "previous_status": "review"
  }
}

Authorizations

Authorization
string
header
required

API key from your incident.io dashboard (Settings → API keys)

Response

200 - application/json

OK response.

event_type
enum<string>
required

What type of event is this webhook for?

Available options:
public_incident.incident_created_v2,
private_incident.incident_created_v2,
public_incident.incident_updated_v2,
private_incident.incident_updated_v2,
public_incident.incident_status_updated_v2,
public_incident.follow_up_created_v1,
private_incident.follow_up_created_v1,
public_incident.follow_up_updated_v1,
private_incident.follow_up_updated_v1,
public_incident.follow_up_created_v2,
private_incident.follow_up_created_v2,
public_incident.follow_up_updated_v2,
private_incident.follow_up_updated_v2,
public_incident.action_created_v1,
private_incident.action_created_v1,
public_incident.action_updated_v1,
private_incident.action_updated_v1,
public_alert.alert_created_v1,
private_alert.alert_created_v1,
private_incident.membership_granted_v1,
private_incident.membership_revoked_v1,
public_incident.postmortem_document_status_updated_v1,
private_incident.postmortem_document_status_updated_v1
Example:

"public_incident.postmortem_document_status_updated_v1"

public_incident.postmortem_document_status_updated_v1
object
required
Example:
{
"new_status": "complete",
"postmortem_document": {
"created_at": "2021-08-17T13:28:57.801578Z",
"document_url": "https://app.incident.io/my-org/incidents/123/post-mortems/01GDZEW57FDA1K4S63MGMQ5DS9",
"editors": [
{
"email": "lisa@incident.io",
"id": "01FCNDV6P870EA6S7TK1DSYDG0",
"name": "Lisa Karlin Curtis",
"role": "viewer",
"slack_user_id": "U02AYNF2XJM"
}
],
"exported_urls": [
"https://www.notion.so/INC-123-sad-database",
"https://docs.google.com/document/d/1234"
],
"id": "01GDZEW57FDA1K4S63MGMQ5DS9",
"incident_id": "01GBA8J19SMXQWPJMX3P2ESCVG",
"status": "in_progress",
"title": "INC-123: Database is sad",
"updated_at": "abc123"
},
"previous_status": "review"
}