We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2063b9a commit afd850bCopy full SHA for afd850b
src/Endpoint/Reports.php
@@ -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