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

Schedules.Export

Overview

Available Operations

Delete ICal Link

Example Usage

from squadcast import SquadcastSDK


with SquadcastSDK(
    refresh_token_auth="<YOUR_REFRESH_TOKEN_AUTH_HERE>",
) as squadcast_sdk:

    res = squadcast_sdk.schedules.export.delete_ical_link(schedule_id="<id>", my_on_call=True)

    # Handle response
    print(res)

Parameters

Parameter
Type
Required
Description

schedule_id

str

✔️

N/A

my_on_call

bool

✔️

N/A

retries

Configuration to override the default retry behavior of the client.

Response

bytes

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