Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
The site is still accessible to view, however, the ability to login, create content, or access your community account is temporarily unavailable. We appreciate your patience during this time. If seeking support, please browse existing community content or ask our Zoom Virtual Agent.
2026-01-06 01:34 AM
Hi Zoom Developer Community,
We are developing a medical seminar platform that integrates with Zoom. Previously, we used the **Zoom Webinar API** (`POST /v2/webinars/{webinarId}/registrants`) to register users programmatically. This worked great - users could register with one click, and Zoom automatically sent confirmation emails with join links.
Recently, we started using **Zoom Events (Webinar Plus)** for our seminars. We discovered that the standard Webinar API doesn't work with Zoom Events and returns error code 3000:
{"code": 3000, "message": "Registration has not been enabled for this webinar: xxxxx"}
We then tried the **Zoom Events Tickets API** (`POST /v2/zoom_events/events/{eventId}/tickets`), which successfully creates tickets. However, we found that **confirmation emails are not automatically sent** when using this API.
## Our Question
Is there any way to achieve the following with Zoom Events via API?
1. Register a user programmatically (one-click registration from our platform)
2. Have Zoom automatically send a confirmation email with the join link
We want to avoid implementing our own email system if possible, as this adds significant development and maintenance overhead.
## What we've tried
- Using the Tickets API with various parameters
- Searching for email-related settings in the API documentation
- Looking for webhook-triggered email options
## Our use case
- Medical professionals register for seminars on our platform
- We pre-fill their information (name, email, hospital, specialty) from their profile
- One-click registration improves user experience significantly
Any guidance on whether this is possible, or if there are planned features to support this, would be greatly appreciated.
Thank you!