API ReferenceConnected accounts

List external users

List the external users synced from a connected account (e.g., the users on a connected Zoom account).

Returns a 404 when the connected account does not exist, is not accessible to the current actor, or is not a conferencing connected account.

GET
/v1/connected_accounts/{connected_account_id}/external_users

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

connected_account_id*string

The connected account's unique identifier

Match^cact_\w{12}$

Query Parameters

page?integer

Page number

Range1 <= value
page_size?integer

Number of items per page

Range1 <= value
email?string

Only return external users matching this email address (case-insensitive).

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/connected_accounts/cact_abcdef123456/external_users"
{  "data": [    {      "email": "dr.smith@example.com",      "first_name": "Jane",      "id": "exusr_d025a96ac0c6",      "last_name": "Smith",      "object": "external_user",      "status": "active"    }  ],  "meta": {    "current_page": 1,    "page_size": 10,    "total_count": 50,    "total_pages": 5  }}