This commit is contained in:
Naden
2026-04-25 04:41:23 +07:00
commit 7e9668a552
195 changed files with 20254 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/**
* @copyright https://github.com/UsabilityDynamics/zoom-api-php-client/blob/master/LICENSE
*/
namespace Zoom\Endpoint;
use Zoom\Interfaces\Request;
/**
* Class Reports
* @package Zoom\Interfaces
*/
class Reports extends Request {
/**
* Meetings constructor.
* @param $apiKey
* @param $apiSecret
*/
public function __construct($apiKey, $apiSecret) {
parent::__construct($apiKey, $apiSecret);
}
/**
* Meeting Participants
*
* @param $meetingUUID
* @param array $query
* @return array|mixed
*/
public function meetingParticipants(string $meetingUUID, array $query = []) {
return $this->get("report/meetings/{$meetingUUID}/participants", $query);
}
}