I am using ruby sdk to create user and meeting. Here is my sample code.
service = Zoom.configure { |c|
c.api_key = Rails.application.credentials.dig(:zoom, :api_key)
c.api_secret = Rails.application.credentials.dig(:zoom, :api_secret)
} && Zoom.new
service.user_create(email: ‘test@gmail.com’, first_name: ‘Test’, last_name: ‘Sample’, type: 1, password: ‘Test@123’)
I am getting the following response,
{“code”=>200, “message”=>“No privilege.”}
When I check list of created user, I am not getting the newly created user.