circle-info
Squadcast is now SolarWinds Incident Response

Schedule.Export

Overview

Available Operations

Delete ICal Link

Example Usage

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

const squadcastSDK = new SquadcastSDK({
  bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await squadcastSDK.schedule.export.deleteICalLink({
    scheduleID: "<id>",
    myOnCall: true,
  });

  console.log(result);
}

run();

Standalone function

The standalone function version of this method:

Parameters

Parameter
Type
Required
Description

request

✔️

The request object to use for the request.

options

RequestOptions

Used to set various options for making HTTP requests.

options.fetchOptions

Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.

options.retries

Enables retrying HTTP requests under certain failure conditions.

Response

Promise<Uint8Arrayarrow-up-right>

Errors

Error Type
Status Code
Content Type

errors.CommonV4Error

400, 401, 402, 403, 404, 409, 422

application/json

errors.CommonV4Error

500, 502, 503, 504

application/json

errors.SDKDefaultError

4XX, 5XX

*/*

Last updated