circle-info
Squadcast is now SolarWinds Incident Response

ExportSchedule

Overview

Available Operations

Refresh Schedule ICal Link

Example Usage

from squadcast_sdk import SquadcastSDK


with SquadcastSDK(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as ss_client:

    res = ss_client.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

retries

Configuration to override the default retry behavior of the client.

Response

models.ExportRefreshScheduleIcalLinkResponse

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