circle-info
Squadcast is now SolarWinds Incident Response

IncidentsGetIncidentEventsRequest

Example Usage

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

let value: IncidentsGetIncidentEventsRequest = {
  incidentID: "<id>",
  offset: "<value>",
  limit: "<value>",
  sort: "<value>",
  deduped: "<value>",
};

Fields

Field
Type
Required
Description

incidentID

string

✔️

N/A

offset

string

✔️

non zero value

limit

string

✔️

non zero value, maximum is 10

sort

string

✔️

sort it by either asc or desc

deduped

string

✔️

if set to true, it will return only the deduped events. if set to false, it will return only the non-deduped event. otherwise it will return all the events

Last updated