The User that is already registered and is associated to a zoom_id is shown error and unable to create a meeting using error code 1001. The message is shown as :
data: {
code: 1001,
message: ‘User does not exist: ZOOM_ID.’
}
METHOD: POST
App Type: JWT
Account Type: Basic
Create a Meeting
POST # https://api.zoom.us/v2/users/${ZOOM_ID}/meetings
#PAYLOAD
{
topic: topic,
type: '2',
start_time: time,
duration: duration,
timezone:timezone,
password: password,
agenda: agenda,
settings: {
host_video: 'true',
participant_video: 'true',
cn_meeting: 'false',
in_meeting: 'false',
join_before_host: 'true',
mute_upon_entry: 'false',
watermark: 'false',
use_pmi: 'false',
waiting_room: false,
approval_type: '2',
audio: 'voip',
auto_recording: 'none',
enforce_login: 'false',
registrants_email_notification: false,
},
},
{
headers: {
'Content-Type': 'application/json',
Authorization: JWT_KEY,
},
}