circle-info
Squadcast is now SolarWinds Incident Response

V3IncidentsPostmortemsPostmortemResponse

Represents a Postmortem in the system.

Example Usage

import { V3IncidentsPostmortemsPostmortemResponse } from "@solarwinds/squadcast-sdk-typescript/models";

let value: V3IncidentsPostmortemsPostmortemResponse = {
  id: "<id>",
  organizationId: "<id>",
  incidentId: "<id>",
  postmortem: "<value>",
  followUps: [
    {
      task: "<value>",
      isDone: true,
    },
  ],
  createdAt: "1730137392970",
  title: "<value>",
  status: "published",
  owner: {
    id: "<id>",
    type: "team",
  },
  accessControl: [],
};

Fields

Field
Type
Required
Description

id

string

✔️

N/A

organizationId

string

✔️

N/A

incidentId

string

✔️

N/A

postmortem

string

✔️

N/A

createdAt

string

✔️

N/A

title

string

✔️

N/A

status

✔️

Represents the status of a postmortem.

owner

✔️

Represents the RBAC owner of an entity.

accessControl

✔️

N/A

attachments

string[]

N/A

Last updated