init
This commit is contained in:
36
app/Libraries/Zoom/Endpoint/Reports.php
Normal file
36
app/Libraries/Zoom/Endpoint/Reports.php
Normal 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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user