Logo
Zoom Public API Documentation

List Account Teams

GET {{baseUrl}}/iq/teams?parent_team_id=<string>&team_name=<string>&page_size=30&next_page_token=<string>

List account teams. Filter by parent team ID or team name.

Scopes: iq_team:read:admin,iq_team:read

Rate Limit Label: MEDIUM

 

Body PARAM

Key Datatype Required Description 
parent_team_id
string parent team id
team_name
string the name of team
page_size
number The number of records returned in a single API call.
next_page_token
string The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of the available result list exceeds the page size. The expiration period is 15 minutes.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "teams": [ { "name": "<string>", "team_id": "<string>", "description": "<string>", "type": "flat team", "member_size": "<integer>", "supervisor_size": "<integer>", "leaf": "<boolean>", "parent_teams": [ { "team_id": "<string>", "name": "<string>" }, { "team_id": "<string>", "name": "<string>" } ] }, { "name": "<string>", "team_id": "<string>", "description": "<string>", "type": "hierarchical team", "member_size": "<integer>", "supervisor_size": "<integer>", "leaf": "<boolean>", "parent_teams": [ { "team_id": "<string>", "name": "<string>" }, { "team_id": "<string>", "name": "<string>" } ] } ], "next_page_token": "<string>", "page_size": "<integer>" }



Curl
curl -X GET 'https://api.zoom.us/v2/iq/teams?parent_team_id=<string>&team_name=<string>&page_size=30&next_page_token=<string>?parent_team_id=<string>&team_name=<string>&page_size=30&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS