> For the complete documentation index, see [llms.txt](https://developers.incidents.cloud.solarwinds.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.incidents.cloud.solarwinds.com/typescript/docs/models/v3incidentsmergeintonewparentrequest.md).

# V3IncidentsMergeIntoNewParentRequest

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

## Example Usage

```typescript
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*                                                                                                               | :heavy\_check\_mark: | N/A                                                                   |
| `children`    | *string*\[]                                                                                                            | :heavy\_check\_mark: | N/A                                                                   |
| `newIncident` | [models.V3IncidentsMergeNewParentIncidentRequest](/typescript/docs/models/v3incidentsmergenewparentincidentrequest.md) | :heavy\_check\_mark: | Details used to create a new parent incident while merging incidents. |
