---
title: "Create Webinar Slot"
method: POST
path: "/admin/webinars/slots"
tags: ["Admin - Webinars"]
---

# Create Webinar Slot

`POST /admin/webinars/slots`

Create a new webinar slot.
Only accessible by admin users.

## Request body

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

## 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-service-production.skmtc.workers.dev/v1/apis/excellence-ai/excellence-learning/revisions/c407f3b5a05b/schema)
