Description
I am having a strange issue at zoom API to create meetings, It clearly says to use “me” here
, I can fetch the meetings fine at/v2/users/me/meetings with get request, But if I try to post there to create a meeting , It gives me 404 not found with 1001 as error code.
Error
{
“code”: 1001,
“message”: “User does not exist: me.”
}
Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth V2
Which Endpoint/s?
Type: POST
Endpoint : /v2/users/me/meetings
As said above, GET works and lists all meetings from my account, But POST doesn’t.
How To Reproduce (If applicable)
Steps to reproduce the behavior:
I followed your documentation, Here are steps,
-
Create an app with user privilege (level),
-
Use URL to get the code
-
Get tokens by using the code you got from step 2
-
Use GET request at /v2/users/me/meetings, That should fetch meetings fine
-
Add below as request payload
{
“topic”: “Test topic here”,
“type”: 2,
“start_time”: “2020-05-20T12:02:00Z”,
“duration”: 20,
“schedule_for”: “Test purpose”,
“timezone”: “Asia/Kolkata”,
“password”: “abctest”,
“agenda”: “To test zoom api”,
“recurrence”: {
“type”: 2,
“repeat_interval”: 2,
“weekly_days”: “1,2,3,4,5,6,7”,
“end_times”: 5
},
“settings”: {
“host_video”: true,
“participant_video”: true,
“cn_meeting”: false,
“in_meeting”: true,
“join_before_host”: true,
“mute_upon_entry”: true,
“watermark”: false,
“use_pmi”: false,
“approval_type”: 0,
“registration_type”: 1,
“audio”: “voip”,
“auto_recording”: “local”,
“enforce_login”: false,
“registrants_email_notification”: false
}
}
Use POST Request at /v2/users/me/meetings
Screenshots (If applicable)
https://prnt.sc/saursc & https://prnt.sc/saur61
Hope this helps, I searched in forum to see if I could find solution but I didn’t, Google didn’t help either.
Let me know, (and yes restricting users to put 2 links and only one image is idiotic)
Thanks.