I am trying to create an user with below request body input.
{
“action”:“custCreate”,
“user_info”:{
“email":"example@gmail.com”,
“first_name”:“john”,
“last_name”:“doe”,
“type”:1,
“password”:“Johndoe@1”
}
}
Url: https://api.zoom.us/v2/users
Method: POST
I am getting response as
{
“code”: 2016,
“message”: “No permission, please contact Zoom customer support.”
}.
Also I am using trial account right now, even if I change the action as create it gives me response as
{
“code”: 200,
“message”: “No privilege.”
}
Why this issue is coming ?