---
title: "Update Webinar Slot"
method: PUT
path: "/admin/webinars/slots/{slot_id}"
tags: ["Admin - Webinars"]
---

# Update Webinar Slot

`PUT /admin/webinars/slots/{slot_id}`

Update an existing webinar slot.
Only accessible by admin users.

## Path parameters

- `slot_id` string, required — The ID of the webinar slot to update

## Request body

- WebinarSlotUpdateRequest — Request model for updating a webinar slot
  - `start_time_utc` string, date-time, nullable
  - `title` string, nullable
  - `description` string, nullable
  - `max_attendees` integer, nullable
  - `is_active` boolean, nullable

## Response `200`

Successful Response

- WebinarSlotResponse — Response model for webinar slot
  - `id` string, required
  - `start_time_utc` string, date-time, required
  - `title` string, nullable
  - `description` string, nullable
  - `zoom_link` string, required
  - `max_attendees` integer, nullable
  - `is_active` boolean, required
  - `created_by` string, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `registrations_count` integer
  - `registrations` WebinarRegistrationInfo[]
    - `teacher_id` string, required
    - `teacher_name` string, nullable
    - `teacher_email` string, required
    - `registered_at_utc` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/excellence-ai/apis/excellence-learning.md) · [All operations](https://skmtc.dev/excellence-ai/apis/excellence-learning/llms.txt) · [OpenAPI document](https://skmtc.dev/excellence-ai/apis/excellence-learning/revisions/2a0c1636fd3b?raw)
