GET {{baseUrl}}/users/:userId/webinar_templates
Display a list of a user's webinar templates. For user-level apps, pass the Scopes: me
value instead of the userId
parameter. When you schedule a webinar, save the settings for that webinar as a template for scheduling future webinars. To use a template when scheduling a webinar, use the id
value in this API response in the template_id
field of the Create a webinar API. Prerequisites: * A Pro or a higher account with the Zoom Webinar plan.webinar:read:admin
,webinar:read
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"templates": [
{
"id": "<string>",
"name": "<string>",
"type": "<integer>"
},
{
"id": "<string>",
"name": "<string>",
"type": "<integer>"
}
],
"total_records": "<integer>"
} |
ENDPOINTS