Skip to content

Latest commit

 

History

History
129 lines (86 loc) · 4.71 KB

DeprecatedAPIEndpointsApi.md

File metadata and controls

129 lines (86 loc) · 4.71 KB

Zoom\Api\DeprecatedAPIEndpointsApi

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

Method HTTP request Description
listPastMeetingFiles() GET /past_meetings/{meetingId}/files List past meeting's files
listPastWebinarFiles() GET /past_webinars/{webinarId}/files List past webinar files

listPastMeetingFiles()

listPastMeetingFiles($meeting_id): \Zoom\Api\Model\ListPastMeetingFiles200Response

List past meeting's files

Note: This API has been deprecated and is no longer supported due to GCM encryption updates for security purposes. To learn about saving the in-meeting chat files via Zoom Client, refer to the Saving in-meeting chat guide. List files sent via in-meeting chat during a meeting. The in-meeting files are deleted after 24 hours of the meeting completion time.

Scope: meeting:read, meeting:read:admin
Rate Limit Label: Medium

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\DeprecatedAPIEndpointsApi(
    // 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
);
$meeting_id = 85746065; // int | The meeting's ID.    When storing this value in your database, you must store it as a long format integer and **not** an integer. Meeting IDs can exceed 10 digits.

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

Parameters

Name Type Description Notes
meeting_id int The meeting's ID. When storing this value in your database, you must store it as a long format integer and not an integer. Meeting IDs can exceed 10 digits.

Return type

\Zoom\Api\Model\ListPastMeetingFiles200Response

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]

listPastWebinarFiles()

listPastWebinarFiles($webinar_id): \Zoom\Api\Model\ListPastWebinarFiles200Response

List past webinar files

Note: This API has been deprecated and is no longer supported due to GCM encryption updates for security purposes. List files sent via in-meeting chat during a meeting. The in-meeting files are deleted after 24 hours of the meeting completion time.

Scope: webinar:read, webinar:read:admin
Rate Limit Label: Medium

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\DeprecatedAPIEndpointsApi(
    // 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
);
$webinar_id = xyz123abc; // string

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

Parameters

Name Type Description Notes
webinar_id string

Return type

\Zoom\Api\Model\ListPastWebinarFiles200Response

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]