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

IncidentsMergeIncidentsRequest

Supported Types

models.V3IncidentsMergeIntoExistingParentRequest

const value: models.V3IncidentsMergeIntoExistingParentRequest = {
  ownerId: "<id>",
  parentIncidentId: "<id>",
  children: [
    "<value 1>",
    "<value 2>",
  ],
};

models.V3IncidentsMergeIntoNewParentRequest

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

Last updated