Logo
Zoom Public API Documentation

List a user's PAC accounts

GET {{baseUrl}}/users/:userId/pac

Retrieve a list of a user's personal audio conference (PAC) accounts. For user-level apps, pass the me value instead of the userId parameter.

PAC allows Pro or higher account holders to host meetings through PSTN (phone dial-in) only.

Prerequisites * A Pro or higher plan with an Audio Conferencing subscription. * The Personal Audio Conference setting enabled in the user's profile.

Scopes: pac:read:admin,pac:read

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "pac_accounts": [ { "conference_id": "<long>", "dedicated_dial_in_number": [ { "country": "<string>", "number": "<string>" }, { "country": "<string>", "number": "<string>" } ], "global_dial_in_numbers": [ { "country": "<string>", "number": "<string>" }, { "country": "<string>", "number": "<string>" } ], "listen_only_password": "<string>", "participant_password": "<string>" }, { "conference_id": "<long>", "dedicated_dial_in_number": [ { "country": "<string>", "number": "<string>" }, { "country": "<string>", "number": "<string>" } ], "global_dial_in_numbers": [ { "country": "<string>", "number": "<string>" }, { "country": "<string>", "number": "<string>" } ], "listen_only_password": "<string>", "participant_password": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/users/:userId/pac' -H 'Accept: application/json'

ENDPOINTS