---
title: "Update a webinar"
method: PATCH
path: "/calendar/{connection_id}/webinar/{id}"
tags: ["calendar", "webinar"]
---

# Update a webinar

`PATCH /calendar/{connection_id}/webinar/{id}`

## Path parameters

- `connection_id` string, required
- `id` string, required

## Query parameters

- `fields` string[]
- `raw` string

## Request body

- CalendarWebinar
  - `id` string
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `calendar_id` string
  - `subject` string
  - `start_at` string, date-time
  - `end_at` string, date-time
  - `timezone` string
  - `notes` string
  - `status` 'CANCELED' | 'CONFIRMED' | 'TENTATIVE'
  - `organizer` PropertyCalendarWebinarOrganizer
    - `user_id` string
    - `email` string
    - `name` string
    - `status` 'ACCEPTED' | 'REJECTED' | 'TENTATIVE'
    - `required` boolean
    - `is_cohost` boolean
  - `join_url` string
  - `web_url` string
  - `panelists` CalendarWebinarPanelist[]
    - `email` string
    - `name` string
    - `is_required` boolean
    - `join_url` string
    - `join_password` string
    - `status` 'ACCEPTED' | 'REJECTED' | 'TENTATIVE'
  - `registrants` CalendarWebinarRegistrant[]
    - `email` string
    - `name` string
    - `registration_reference` string
    - `registration_status` 'PENDING' | 'APPROVED' | 'REJECTED' | 'CANCELLED'
    - `registered_at` string, date-time
  - `panelist_password` string
  - `registrant_password` string
  - `conference` CalendarConference[]
    - `conference_identifier` string
    - `url` string
    - `label` string
    - `telephone` string
    - `participant_access_code` string
    - `host_access_code` string
    - `notes` string
    - `country_code` string
    - `region_code` string
  - `recurrence` CalendarEventRecurrence[]
    - `frequency` 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY'
    - `interval` number
    - `count` number
    - `end_at` string, date-time
    - `on_days` string[] — days of the week to repeat on, defaults to undefined (every day), only used if frequency is WEEKLY
    - `on_months` number[] — months of the year to repeat on, defaults to undefined (every month), only used if frequency is YEARLY, January is 1
    - `on_month_days` number[] — days of the month to repeat on, defaults to undefined (every day), only used if frequency is MONTHLY
    - `on_weeks` number[] — week ordinals for BYDAY (e.g., -1 for last, -2 for second-to-last, 1 for first, 2 for second), only used with on_days. 0 is used for days without week ordinals.
    - `on_year_days` number[] — days of the year to repeat on, defaults to undefined (every day), only used if frequency is YEARLY
    - `week_start` 'SU' | 'MO' | 'TU' | 'WE' | 'TH' | 'FR' | 'SA'
    - `excluded_dates` string[] — dates to exclude from the recurrence, defaults to undefined (no exclusions)
    - `included_dates` string[] — dates to include in the recurrence, defaults to undefined (no inclusions)
    - `timezone` string
  - `capacity` number
  - `is_webcast` boolean
  - `is_enabled` boolean
  - `is_auto_approve` boolean
  - `require_first_name` boolean
  - `require_last_name` boolean
  - `require_email` boolean
  - `require_company` boolean
  - `require_job_title` boolean
  - `require_address` boolean
  - `require_phone` boolean
  - `has_qa` boolean
  - `has_polls` boolean
  - `has_recording` boolean
  - `raw` object

## Response `200`

Successful

- CalendarWebinar
  - `id` string
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `calendar_id` string
  - `subject` string
  - `start_at` string, date-time
  - `end_at` string, date-time
  - `timezone` string
  - `notes` string
  - `status` 'CANCELED' | 'CONFIRMED' | 'TENTATIVE'
  - `organizer` PropertyCalendarWebinarOrganizer
    - `user_id` string
    - `email` string
    - `name` string
    - `status` 'ACCEPTED' | 'REJECTED' | 'TENTATIVE'
    - `required` boolean
    - `is_cohost` boolean
  - `join_url` string
  - `web_url` string
  - `panelists` CalendarWebinarPanelist[]
    - `email` string
    - `name` string
    - `is_required` boolean
    - `join_url` string
    - `join_password` string
    - `status` 'ACCEPTED' | 'REJECTED' | 'TENTATIVE'
  - `registrants` CalendarWebinarRegistrant[]
    - `email` string
    - `name` string
    - `registration_reference` string
    - `registration_status` 'PENDING' | 'APPROVED' | 'REJECTED' | 'CANCELLED'
    - `registered_at` string, date-time
  - `panelist_password` string
  - `registrant_password` string
  - `conference` CalendarConference[]
    - `conference_identifier` string
    - `url` string
    - `label` string
    - `telephone` string
    - `participant_access_code` string
    - `host_access_code` string
    - `notes` string
    - `country_code` string
    - `region_code` string
  - `recurrence` CalendarEventRecurrence[]
    - `frequency` 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY'
    - `interval` number
    - `count` number
    - `end_at` string, date-time
    - `on_days` string[] — days of the week to repeat on, defaults to undefined (every day), only used if frequency is WEEKLY
    - `on_months` number[] — months of the year to repeat on, defaults to undefined (every month), only used if frequency is YEARLY, January is 1
    - `on_month_days` number[] — days of the month to repeat on, defaults to undefined (every day), only used if frequency is MONTHLY
    - `on_weeks` number[] — week ordinals for BYDAY (e.g., -1 for last, -2 for second-to-last, 1 for first, 2 for second), only used with on_days. 0 is used for days without week ordinals.
    - `on_year_days` number[] — days of the year to repeat on, defaults to undefined (every day), only used if frequency is YEARLY
    - `week_start` 'SU' | 'MO' | 'TU' | 'WE' | 'TH' | 'FR' | 'SA'
    - `excluded_dates` string[] — dates to exclude from the recurrence, defaults to undefined (no exclusions)
    - `included_dates` string[] — dates to include in the recurrence, defaults to undefined (no inclusions)
    - `timezone` string
  - `capacity` number
  - `is_webcast` boolean
  - `is_enabled` boolean
  - `is_auto_approve` boolean
  - `require_first_name` boolean
  - `require_last_name` boolean
  - `require_email` boolean
  - `require_company` boolean
  - `require_job_title` boolean
  - `require_address` boolean
  - `require_phone` boolean
  - `has_qa` boolean
  - `has_polls` boolean
  - `has_recording` boolean
  - `raw` object

---

[API](https://skmtc.net/unified/apis/unified-to-api.md) · [All operations](https://skmtc.net/unified/apis/unified-to-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unified/unified-to-api/versions/1f72720916e4/schema)
