Not able to Schedule meeting with Zoom API https://api.zoom.us/v2/users/" + strUserName + "/meetings

Before Creating a New Topic:

If you’re experiencing unexpected API/Zoom API Events (webhooks) behavior please search the forum with relevant keywords (e.x. error message) and follow the guidance outlined in those posts. Please also leverage the following support links:


Format Your New Topic as Follows:

API Endpoint(s) and/or Zoom API Event(s)
Link the API endpoint(s) and/orZoom API Event(s) you’re working with to help give context.

Description
Details on your question, workflow or the problem you’re trying to solve.

Error?
The full error message or issue you are running into, where applicable.

How To Reproduce
Steps to reproduce the behavior:
1. Request URL / Headers (without credentials or sensitive info like emails, uuid, etc.) / Body
2. Authentication method or app type
3. Any errors

We are unable to Schedule meeting with Zoom API https://api.zoom.us/v2/users/" + strUserName + "/meetings.

Hi @scdlzoom.sisteam this is something I can probably help with, if you could provide a bit more information. First and foremost, what error message is being returned? You should be getting an error object with an HTTP Status Code and then (sometimes) a Zoom-specific Error Code.

I pulled these potential errors from the meeting creation API endpoint documentation:

HTTP Status Code: 400 - Bad Request

  • Error Code: 3161
    Your user account is not allowed meeting hosting and scheduling capabilities.
  • Error Code: 3000
    Instant meetings do not support the schedule_for parameter, and you can’t schedule an instant meeting for another user.
  • Error Code: 3000
    Users in ‘{userId}’ have been blocked from joining meetings and webinars. To unblock them, go to the Settings page in the Zoom web portal and update Block users in specific domains from joining meetings and webinars.
  • Error Code: 3000
    You cannot schedule a meeting for {userId}
  • Error Code: 300
    The value that you entered in the schedule_for field is invalid. Enter a valid value and try again.
  • Error Code: 300
    Invalid enforce_login_domains. Separate multiple domains with semicolons.

HTTP Status Code: 404 - Not Found

  • Error Code: 1001
    User does not exist: {userId}.

HTTP Status Code: 429 - Too Many Requests.

Looking at those details will provide you with the next step of where to look to resolve the issue you’re encountering.

1 Like