Skip to content

Commit afd850b

Browse files
committed
reports enpoint added
1 parent 2063b9a commit afd850b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/Endpoint/Reports.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
3+
namespace UDX\Zoom\Endpoint;
4+
5+
use UDX\Zoom\Http\Request;
6+
7+
/**
8+
* Class Meetings
9+
* @package UDX\Zoom\Endpoint
10+
*/
11+
class Reports extends Request {
12+
13+
/**
14+
* Meetings constructor.
15+
* @param $apiKey
16+
* @param $apiSecret
17+
*/
18+
public function __construct($apiKey, $apiSecret) {
19+
parent::__construct($apiKey, $apiSecret);
20+
}
21+
22+
/**
23+
* Meeting Participants
24+
*
25+
* @param $meetingUUID
26+
* @param array $query
27+
* @return array|mixed
28+
*/
29+
public function meetingParticipants(string $meetingUUID, array $query = []) {
30+
return $this->get("report/meetings/{$meetingUUID}/participants", $query);
31+
}
32+
33+
}

0 commit comments

Comments
 (0)