Logo
Zoom Public API Documentation

List channel members

GET {{baseUrl}}/chat/channels/:channelId/members?next_page_token=<string>&page_size=30

Lists all members of a channel.

Scopes: chat_channel:read
Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
next_page_token
string The next page token paginates through a large set of results. A next page token is returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.
page_size
number The number of records returned with a single API call.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "members": [ { "email": "<email>", "first_name": "<string>", "id": "<string>", "member_id": "<string>", "last_name": "<string>", "name": "<string>", "role": "owner", "is_external": "<boolean>" }, { "email": "<email>", "first_name": "<string>", "id": "<string>", "member_id": "<string>", "last_name": "<string>", "name": "<string>", "role": "member", "is_external": "<boolean>" } ], "next_page_token": "<string>", "page_size": "<integer>", "total_records": "<integer>" }



Curl
curl -X GET 'https://api.zoom.us/v2/chat/channels/:channelId/members?next_page_token=<string>&page_size=30?next_page_token=<string>&page_size=30' -H 'Accept: application/json'

ENDPOINTS