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 a92cf9f commit 52222b3Copy full SHA for 52222b3
README.md
@@ -1,2 +1,32 @@
1
# zoom-api-php-client
2
Zoom.us API v2 client for PHP
3
+
4
+### Installation
5
6
+Add the following repository source to your composer.json:
7
8
+```
9
+{
10
+ "type": "composer",
11
+ "url": "https://repository.usabilitydynamics.com"
12
+}
13
14
15
+Require via composer:
16
17
18
+composer require usabilitydynamics/zoom-api-php-client:1.0.0
19
20
21
+Initialize:
22
23
24
+use UDX\Zoom\Zoom;
25
+$zoom = new Zoom( <api_key>, <secret_key> );
26
27
28
+Use:
29
30
31
+$meetings = $zoom->meetings->list( <user_id> );
32
0 commit comments