Give user specific license

Hello,

Sorry if this been asked before, I’ve searched and couldn’t find anything.

My college purchased 2 types of licenses:

  1. Zoom One for Education Enterprise Essentials
  2. Zoom One for Education Enterprise Student

When i create a new user, it get assigned automatically the Essentials license, and that’s fine for the Faculty, but when I create an account for student I need to assign it the Student license and I can’t seem to find a way to do that with the API.

How can I give users a specific license?

Welcome to the Zoom DevForum!

Have a look at this reference:

zoom_one_type

integer

The Zoom Workplace plan option. 0 - Turn off Zoom Workplace license.
16 - Zoom Workplace Business Plus with US/CA Unlimited.
32 - Zoom Workplace Business Plus with UK/IR Unlimited.
64 - Zoom Workplace Business Plus with AU/NZ Unlimited.
128 - Zoom Workplace Business Plus with Japan Unlimited.
33554432 - Zoom Workplace Business Plus with Global Select.
134217728 - Zoom Workplace Enterprise Premier with US/CA Unlimited.
1073741824 - Zoom Workplace Enterprise Premier with AU/NZ Unlimited.
536870912 - Zoom Workplace Enterprise Premier with UK/IR Unlimited.
268435456 - Zoom Workplace Enterprise Premier with Japan Unlimited.
4398046511104 - Zoom Workplace Pro Plus with US/CA Unlimited.

The Zoom One plan option for Gov accounts:
0 - Turn off Zoom One license.
16 - Zoom One Business Plus.

The Zoom One plan option for Education accounts:
0 - Turn off Zoom One license.
18014398509481984 - Zoom One for Education School and Campus.
72057594037927936 - Zoom One for Education Enterprise Essentials.
576460752303423488 - Zoom One for Education Enterprise Student.
144115188075855872 - Zoom One for Education Enterprise Plus.
137438953472 - Zoom One for Education School and Campus Plus with US/CA Unlimited.
1099511627776 -Zoom One for Education School and Campus Plus with AU/NZ Unlimited.
549755813888 - Zoom One for Education School and Campus Plus with UK/IR Unlimited.
274877906944 - Zoom One for Education School and Campus Plus with Japan Unlimited.
2199023255552 - Zoom One for Education School and Campus Plus with Global Select.
4294967296 - Zoom One for Education Enterprise Premier with US/CA Unlimited.
34359738368 - Zoom One for Education Enterprise Premier with AU/NZ Unlimited.
17179869184 -Zoom One for Education Enterprise Premier with UK/IR Unlimited.
8589934592 - Zoom One for Education Enterprise Premier with with Japan Unlimited.
68719476736 - Zoom One for Education Enterprise Premier with Global Select.

Allowed: 0┃16┃32┃64┃128┃33554432┃134217728┃268435456┃536870912┃1073741824┃4398046511104┃4294967296┃8589934592┃17179869184┃34359738368┃68719476736┃137438953472┃274877906944┃549755813888┃1099511627776┃2199023255552┃18014398509481984┃72057594037927940┃144115188075855870┃576460752303423500

Seems like assigning zoom_one_type=576460752303423488 could do the trick in assigning a “Zoom One for Education Enterprise Student” license, but this would only work for existing users.

If you’re wanting to create new users with this license type straight away, then the Create Users endpoint could do the trick:

Maybe something like this in your request body:

{
  "action": "create",
  "user_info":{
    "email": "joe.bloggs@acme.corp",
    "first_name": "Joe",
    "last_name": "Bloggs",
    "display_name": "Joe Bloggs",
    "type": 2,
    "feature":{
      "zoom_one_type": 576460752303423488
    }
  }
}

Disclaimer: I’ve not tried this myself. I don’t have this license type to issue out, but this seems doable in theory…

Thank you very much!!

I was able to set the right licenses.

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.