Squadcast is now SolarWinds Incident Response
For the complete documentation index, see llms.txt. This page is also available as Markdown.

V3IncidentsMergeIntoNewParentRequest

Request body for merging incidents under a newly created parent incident.

Example Usage

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

let value: V3IncidentsMergeIntoNewParentRequest = {
  ownerId: "<id>",
  children: [
    "<value 1>",
    "<value 2>",
    "<value 3>",
  ],
  newIncident: {
    message: "<value>",
    assignee: {
      id: "<id>",
      type: "escalationpolicy",
    },
    serviceId: "<id>",
  },
};

Fields

Field
Type
Required
Description

ownerId

string

✔️

N/A

children

string[]

✔️

N/A

newIncident

✔️

Details used to create a new parent incident while merging incidents.

Last updated