Using this template helps us debug your issues more effectively
Description
We are an online education service, we use zoom api to create meeting in advance, and teacher start the meeting with the the start_url from /meeting/id endpoint. We had a couple of reports today that multiple meetings end up with error message Meeting not existed Error (3001).
Error
after clicking start_url, it goes to a page hosted by zoom with an error message
Which App Type (OAuth / Chatbot / JWT / Webhook)?
Knowing the endpoint/s can help us to identify your issue faster. Please link the ones you need Meeting not existed (3001)
help/have a question with.
Which Endpoint/s?
How To Reproduce (If applicable)
Steps to reproduce the behavior:
Request URL / Headers (without credentials) / Body
See error
Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.
Additional context
The affected meeting ids are
[REDACTED]
we had to delete these meeting, and created new ones when this happened. But when it happened, these meeting do exists, because, we were able to call /api/meetings/id to fetch start_url
Had another instance just now, the meeting id is [REDACTED], we used the start_url from this response and ends up with 3001, had to delete and create a new one instead
{
"endpoint": "https://api.zoom.us/v2/meetings/91331774890",
"response_headers": [
"Set-Cookie: zm_aid=""; Domain=.zoom.us; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/; Secure; HttpOnly"
],
"date_time": "2021-06-08 14:30:21",
"method": "GET",
"request_body": "N/A",
"response": "{"uuid":"[REDACTED]","id":"[REDACTED],"host_id":"[REDACTED]","host_email":"[REDACTED]","assistant_id":"","topic":"Scratch Ninja 3 (2:30 PM Pacific Daylight Time, 6/08, 6/15, 6/22, 6/29)","type":8,"status":"waiting","timezone":"America/Los_Angeles","agenda":"Unit 3 covers the most advanced programming concepts that Scratch has to offer such as list/array, defining your own blocks (functions), and complex interactions between different game elements. In this Advanced Scratch class, students will design and deliver projects on their own, spending significant time outside of class to complete projects successfully. The end-to-end process includes designing games in response to a users' preferences, organizing the design process into multiple steps, and structuring codes in efficient ways.","created_at":"2021-03-27T01:51:45Z","start_url":"[RECACTED].",
"request_headers": [
"accept-encoding: gzip,deflate",
"accept: application/json",
"authorization: ******",
"connection: close",
"user-agent: node-fetch/1.0 (+https://github.com/bitinn/node-fetch)"
],
"request_params": [
],
"http_status": "200"
}
Thank you for reaching out to the Zoom Developer Forum. Looking at these meetings I was able to see that each meeting was deleted by the same user that created it - the account owner. If you’re using JWT or account level OAuth this would indicate it was done via API.
Meeting *******7741: Deleted at 2021-06-07 17:35:27 (GMT)
Meeting *******9414: Deleted at 2021-06-07 16:03:13 (GMT)
Meeting *******4890: Deleted at 2021-06-08 21:30:26 (GMT)
The error happened before the meeting was deleted. The reason we deleted the meeting was precisely this error and we had to recreate the meeting.
And because we used the start_url from response of https://api.zoom.us/v2/meetings/xxx to start meeting, that api call would fail if the meeting was deleted before that. So it’s a different error
Thanks for clarifying, are you able to provide a meeting ID that hasn’t been deleted? The error Meeting Does Not Exist can happen when the meeting has been deleted to it’ll be difficult to troubleshoot deleted meetings.
I cannot reproduce this, so it’s hard to produce another meeting id, so far it happened 3 times in the past 2 days with 3 different meeting id I posted. We have 60+ hosts under the same account, and programatically manage the meetings. When this happened, we had to delete and recreate new ones to start our video conference.
Are you able to look up the logs, for example, when anyone tried to join or start meeting [REDACTED] ? As I posted, “date_time”: “2021-06-08 14:30:21” is the timestamp I call successfully called https://api.zoom.us/v2/meetings/[REDACTED]to get start_url, which leads to that error page with 3001. The meeting was deleted after this
I checked out logs for that meeting and saw many successful requests to the Get a Meeting API for that meeting. All requests responded with a 200 OK status.
Then, at 2021-06-08T21:30:26.876Z, the Delete a Meeting API was called on that meeting and all subsequent requests responded with a 404 status.