cancel
Showing results for 
Search instead for 
Did you mean: 

User types

sailpoint
Explorer
Explorer

Hi Team,
Could you please clarifiy on below questions:

How many User Types supported by zoom?
I can see user type field is deprecated. Should we avoide using it ?

Thanks,
Sailpoint

5 REPLIES 5

MGSR
Community Moderator | Employee
Community Moderator | Employee

Hello @sailpoint,

Welcome to the Zoom Community! We're happy to have you here.

Zoom no longer requires admins to select a user type when adding users, as this field is now deprecated. Instead, admins only need to assign purchased licenses or set appropriate permission levels (like Zoom Meetings Basic). Users without a license can be unassigned to prevent meeting scheduling or hosting. Avoid using the user type field in new integrations or workflows since it’s no longer supported for user management.

You can check out this link for reference. 


Mark
Zoom Community Team
Have you heard of Zoom AI Companion?

Thank you for your response @MGSR 

Hi @MGSR ,
Which parameter used identify basic, licnece and on-prem (permission levels) in SCIM and REST API?

 Thanks,
Prashant

YaBoiB
Community Champion | Employee
Community Champion | Employee

Hi Prashant, 

 

 A great resource is our dev forum. This may not be the exact answer to your question, but there is a lot of resources and this page is monitored Zoom API subject matter experts. Here is the link https://devforum.zoom.us/t/zoom-scim-api-getuser-listusers-createuser-user-profile-consistency/11128... 

 

I "think" user roles is the right answer to your question, but I know for sure that the devs in this page above can help you. 

 

Here is an example of a createuser template for user creation.

 

{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"userName": "***********",
"name": {
"givenName": "John",
"familyName": "Doe"
},
"displayName": "John Doe",
"emails": [
{
"value": "***********",
"primary": true
}
],
"active": true,
"externalId": "123456",
"roles": [
{
"value": "member"
}
]
}

 


Brandon (he/him/his)
Zoom Community Champion
Have you heard of Zoom AI Companion?

sailpoint
Explorer
Explorer

Hi @MGSR ,
Previously "type" parameter was used to identify the user type basic, licnece and on-prem with values 1, 2, 4.
Which parameter is now used for permission levels to assing (basic, licnece, on-prem and collabaration)?
Could you please share parameter name for SCIM based API and REST API?

Thanks,
Prashant