Hi @elisa.zoom,
Thanks for your answer and for the link provided. The link refers to meeting templates but there is no information how to create ADMIN templates which is precondition to use templates in create meeting API request. All the templates that are created as described in the link are created as regular type = 1 templates, and we need them of type 2.
In Create meeting API documentation it says:
> template_id
> The account admin meeting template ID which to schedule a meeting using meeting template. For a list of account admin-provided meeting templates, use the List meeting templates API.
> At this time, this field only accepts account admin meeting template IDs.
> To enable the account admin meeting templates feature contact Zoom Support.
We need help and guidance HOW TO CREATE ADMIN TEMPLATES and once created to use their Id(s) in create meeting request API via template_id property
This is the request URL:
https://api.zoom.us/v2/users/onlineinstructor9@tpctraining.com/meetings
And the request body:
{
“type”:8,
“start_time”:“2022-01-31T15:30:00”,
“duration”: 120,
“default_password”: true,
“recurrence”: {
"type": 1,
"repeat_interval": 1,
"end_times": 1
},
“settings”:{
"host_video":false,
"participant_video":false,
"approval_type": 0,
"registration_type": 1,
"close_registration": true,
"registrants_email_notification":true
},
“template_id”: “VjkewjehSLioxy3-ChgqYw”
}
Even though I am forwarding the template_id in the request body it is ignored by the request due to the fact that it is regular template (type 1) and the request expects ADMIN template (type 2).
Additionally, this is the response form List meeting templates API request (https://api.zoom.us/v2/users/onlineinstructor9@tpctraining.com/meeting_templates) where you can see that all templates are of type 1
{
“total_records”: 6,
“templates”: [
{
“id”: “0wGXugw9ThyFMv8gFIyxVg”,
“name”: “Test Meeting Template”,
“type”: 1
},
{
“id”: “IpxQ8EpDRNWwWNAES2G_2Q”,
“name”: “My Meeting”,
“type”: 1
},
{
“id”: “VjkewjehSLioxy3-ChgqYw”,
“name”: “HS - High Voltage Electrical Safety for Power GTD - 29 CFR 1910.269”,
“type”: 1
},
{
“id”: “I1xR8NxQTQeCOp_MjH9oNw”,
“name”: “IA - Instrumentation Process Measurement & Control”,
“type”: 1
},
{
“id”: “akFmVmQ4RL-tKM0RxOaaOg”,
“name”: “VF - Variable Frequency Drives”,
“type”: 1
},
{
“id”: “lJuoqID6RqibQ7YDhkiUsw”,
“name”: “HVE - HVAC Electrical Controls & Air Distribution”,
“type”: 1
}
]
}