When I try to Create a meeting with Zoom API request, I get the error which says user does not exists. I have tried to get the users ID using Get Users List API call and then use the UserID given by the response of that call. Also tried using user email.
{
code: 1001,
message: ‘User does not exist: ***********’
}
I am having the same error I am using the WordPress zoom plugin to create a user if a user with the current email doesn’t exist then use that Id to create a meeting.
Get user is getting me the Id but creating an email is failing I am having a work deadline anyone can tell me how to go about this.
I am having the same error,When I try to Create a meeting with Zoom API request, I get the error which says user does not exists.i Have used Api GET USER ID API Work successfuly but create Meeting get Error
{
code: 1001,
message: ‘User does not exist: ***********’
}
Please Suggested Me…
Hello! I’m trying to create a meeting link using your api, but I get an error:
Array
(
[code] => 1001
[message] => User does not exist: xxxxxxxxxxxxxxxx.
)
Hi everyone, is there an issue with this request? I’m having the same problem when I try to create a meeting from the API Test request tool and I’m not sure if I’m doing something wrong.
I do retrieve the list of user for my account with /user endpoint, I also retrieved user info with /users/{userId} and I get a response with all the user data, but I’m not able to create a meeting with the same userId, instead I’m getting a 1001 error code:
Hi Tommy,
I’m also getting the same “User doesn’t exist” error response when I’m creating an meeting. I have listed the request and response param below : Request Param :
Array (
[topic] => My Meeting
[type] => 2
[password] => *******
[settings] => Array (
[host_video] =>
[participant_video] =>
[join_before_host] => 1
[use_pmi] => [audio] => both
)
)
Response Param
{
code: 1001,
message: ‘User does not exist: ***********’
}
Hey Everyone, FYI, I just got a Pro account, test the same request, and got a complete different response.
BTW, with the free account, the user ID I was using to create a meeting was an active user.
UPDATE: After swapping Free account for Pro account, I found 2 errors of mine, at least for my request:
The account I am using for schedule is not an assigned scheduler for the account I set as value for field schedule_for, so the response returned a status code 400: {“code”:1110,“message”:“Not assigned scheduler.”}
Because I wasn’t trying to schedule for other account, I removed the field schedule_for from my request
After that, I got a 400 status code with this error, which is related to the alternative_hosts field: { "code": 1114, "message": "some.valid.email@mail.com is not a user in your Zoom account." }
After looking for some more information, I found that @Tommy share that there are some prerequisites for both schedule_for and alternative_hosts features here:
At the end I removed both fields from my request since I don’t need them.