Logo
Zoom Public API Documentation

Get role information

GET {{baseUrl}}/roles/:roleId

Each Zoom user automatically has a role which can either be owner, administrator, or member. Account owners and users with edit privileges for role management can add customized roles with a list of privileges.

Use this API to get information including specific privileges assigned to a role.

Pre-requisites

  • A Pro or higher plan.

  • For role management and updates, you must be either the account owner or a user with role management permissions.

Scopes: role:read:admin

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "description": "<string>", "id": "<string>", "name": "<string>", "type": "<string>", "privileges": [ "<string>", "<string>" ], "sub_account_privileges": { "second_level": "<integer>" }, "total_members": "<integer>" }



Curl
curl -X GET 'https://api.zoom.us/v2/roles/:roleId' -H 'Accept: application/json'

ENDPOINTS