HTTP Request returned Status Code 400. No privilege

I am following the steps here: https://github.com/MacsiDigital/laravel-zoom.
I already set my ZOOM_CLIENT_KEY and ZOOM_CLIENT_SECRET in my env.
I tested the functionality in my web.php first before I start coding in controllers.

Error
As i perform this code in my controller:
$user = Zoom::user()->create([
‘first_name’ => ‘First Name’,
‘last_name’ => ‘Last Name’,
‘email’ => ‘test@test.com’,
‘password’ => ‘secret’
]);
return $user;

It returned “HTTP Request returned Status Code 400. No privilege.”

Which App Type (OAuth / Chatbot / JWT / Webhook)?
I am using the JWT App Type.

Hey @shaniaisabellereach,

To create users as stated in the Create User Endpoint Doc, you need to have a Pro or higher account.

Thanks,
Tommy

thanks for your answer, however
is there a way to use the API for testing with a free plan?

Hi @yaman3bd,

Please see my post here regarding this:

Thanks,
Will