Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 2.81 KB

PACApi.md

File metadata and controls

68 lines (45 loc) · 2.81 KB

Zoom\Api\PACApi

All URIs are relative to https://api.zoom.us/v2.

Method HTTP request Description
userPACs() GET /users/{userId}/pac List a user's PAC accounts

userPACs()

userPACs($user_id): \Zoom\Api\Model\UserPACs200Response

List a user's PAC accounts

Use this API to list 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. Scopes: pac:read:admin, pac:read
Rate Limit Label: Light Prerequisites: * A Pro or higher plan with an Audio Conferencing subscription. * The Personal Audio Conference setting enabled in the user's profile.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure OAuth2 access token for authorization: OAuth
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new Zoom\Api\Api\PACApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$user_id = new \Zoom\Api\Model\GroupAdminsDeleteUserIdParameter(); // GroupAdminsDeleteUserIdParameter | The user ID or email address of the user. For user-level apps, pass the `me` value.

try {
    $result = $apiInstance->userPACs($user_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling PACApi->userPACs: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
user_id GroupAdminsDeleteUserIdParameter The user ID or email address of the user. For user-level apps, pass the `me` value.

Return type

\Zoom\Api\Model\UserPACs200Response

Authorization

OAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]