Registration-Required Meetings & Webinars
Send bots to Zoom registration-required meetings and webinars.
Registration-required meetings & webinars are supported by web bots only.
Recall supports sending bots to registration-required Zoom meetings and webinars.
For a bot to join a registration-required meeting, there are two things required:
- A
tk
parameter in the meeting URL - *An email address
*For Zoom webinars, the bot must be added as a panelist.
tk
query parameter
tk
query parameterOnce a user registers for the meeting or webinar, they will receive a meeting URL from Zoom containing a tk
query parameter.
When calling Create Bot, you should ensure that the meeting_url
contains this.
user_email
user_email
If registration is required for a meeting or webinar, Zoom requires an email in the join request.
This should be provided in the zoom.user_email
parameter in the Create Bot request:
{
"zoom": {
"user_email": "[email protected]"
},
}
This email does not have to match the email that was registered for the event. For simplicity's sake, you can provide a hard-coded email address such as
[email protected]
.This can be provided regardless of whether the meeting is a registration-required Zoom meeting or not.
Updated 3 months ago