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

ExportSchedule

Overview

Available Operations

Refresh Schedule ICal Link

Example Usage

from squadcast import SquadcastSDK


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

    res = squadcast_sdk.export_schedule.refresh_ical_link(schedule_id="<id>", my_on_call=True, request_body={})

    # Handle response
    print(res)

Parameters

Parameter
Type
Required
Description

schedule_id

str

✔️

N/A

my_on_call

bool

✔️

N/A

request_body

✔️

N/A

retries

Configuration to override the default retry behavior of the client.

Response

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