- create_calendar_webinar - Create a webinar
- get_calendar_webinar - Retrieve a webinar
- list_calendar_webinars - List all webinars
- patch_calendar_webinar - Update a webinar
- remove_calendar_webinar - Remove a webinar
- update_calendar_webinar - Update a webinar
Create a webinar
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.webinar.create_calendar_webinar(request={
"calendar_webinar": {},
"connection_id": "<id>",
})
assert res.calendar_webinar is not None
# Handle response
print(res.calendar_webinar)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.CreateCalendarWebinarRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.CreateCalendarWebinarResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.SDKError | 4XX, 5XX | */* |
Retrieve a webinar
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.webinar.get_calendar_webinar(request={
"connection_id": "<id>",
"id": "<id>",
})
assert res.calendar_webinar is not None
# Handle response
print(res.calendar_webinar)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.GetCalendarWebinarRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.GetCalendarWebinarResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.SDKError | 4XX, 5XX | */* |
List all webinars
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.webinar.list_calendar_webinars(request={
"connection_id": "<id>",
})
assert res.calendar_webinars is not None
# Handle response
print(res.calendar_webinars)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.ListCalendarWebinarsRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.ListCalendarWebinarsResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.SDKError | 4XX, 5XX | */* |
Update a webinar
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.webinar.patch_calendar_webinar(request={
"calendar_webinar": {},
"connection_id": "<id>",
"id": "<id>",
})
assert res.calendar_webinar is not None
# Handle response
print(res.calendar_webinar)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.PatchCalendarWebinarRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.PatchCalendarWebinarResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.SDKError | 4XX, 5XX | */* |
Remove a webinar
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.webinar.remove_calendar_webinar(request={
"connection_id": "<id>",
"id": "<id>",
})
assert res is not None
# Handle response
print(res)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.RemoveCalendarWebinarRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.RemoveCalendarWebinarResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.SDKError | 4XX, 5XX | */* |
Update a webinar
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.webinar.update_calendar_webinar(request={
"calendar_webinar": {},
"connection_id": "<id>",
"id": "<id>",
})
assert res.calendar_webinar is not None
# Handle response
print(res.calendar_webinar)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.UpdateCalendarWebinarRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.UpdateCalendarWebinarResponse
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.SDKError | 4XX, 5XX | */* |