Description
Not able to create user using API
Error?
response “{"code":3412,"message":"Your request to add a new Licensed user could not be approved at this time because your account has reached the permitted maximum number of 0 paying users. Please purchase additional licenses or contact the Zoom support team to provision additional users in your account."}” string
How To Reproduce
Steps to reproduce the behavior:
- Call api of create user
- Its gives the error
Code :
URL : https://api.zoom.us/v2/users
var client = new RestClient(URL);
var request = new RestRequest();
request.RequestFormat = DataFormat.Json;
request.Method = Method.POST;
request.AddHeader("authorization", "Bearer " +ZoomMeetingToken);
//Create my object
dynamic UsersDetails = new JObject();
dynamic UserInfo = new JObject();
UserInfo.email = xxx@insynchcs.com;
UserInfo.type = "2";
UserInfo.first_name = ABC;
UserInfo.last_name = DEF;
UsersDetails.action = "custCreate";
JArray UserInfoarray = new JArray();
UserInfoarray.Add(UserInfo);
UsersDetails.user_info = UserInfoarray;
string JsonString = JsonConvert.SerializeObject(UsersDetails);
request.AddParameter("application/json", JsonString, ParameterType.RequestBody);
var response = client.Execute(request).Content;
This code is working for 2-3 years suddenly its gave error below :
response “{"code":3412,"message":"Your request to add a new Licensed user could not be approved at this time because your account has reached the permitted maximum number of 0 paying users. Please purchase additional licenses or contact the Zoom support team to provision additional users in your account."}” string
Please note that the rest of the API is working fine for existing users ex: Join Meeting, Update Meeting, etc….