zoom_rb 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +64 -0
  3. data/.gitignore +19 -0
  4. data/.ruby-version +1 -0
  5. data/Gemfile +5 -0
  6. data/Gemfile.lock +91 -0
  7. data/LICENSE +22 -0
  8. data/Makefile +5 -0
  9. data/README.md +51 -0
  10. data/lib/zoom.rb +49 -0
  11. data/lib/zoom/actions/account.rb +93 -0
  12. data/lib/zoom/actions/group.rb +8 -0
  13. data/lib/zoom/actions/im/chat.rb +29 -0
  14. data/lib/zoom/actions/im/group.rb +10 -0
  15. data/lib/zoom/actions/m323_device.rb +8 -0
  16. data/lib/zoom/actions/meeting.rb +80 -0
  17. data/lib/zoom/actions/metrics.rb +29 -0
  18. data/lib/zoom/actions/recording.rb +35 -0
  19. data/lib/zoom/actions/report.rb +29 -0
  20. data/lib/zoom/actions/user.rb +146 -0
  21. data/lib/zoom/actions/webinar.rb +110 -0
  22. data/lib/zoom/client.rb +36 -0
  23. data/lib/zoom/defaults.rb +96 -0
  24. data/lib/zoom/error.rb +9 -0
  25. data/lib/zoom/interface.rb +6 -0
  26. data/lib/zoom/params.rb +64 -0
  27. data/lib/zoom/utils.rb +74 -0
  28. data/spec/fixtures/chat/get.json +16 -0
  29. data/spec/fixtures/chat/list.json +16 -0
  30. data/spec/fixtures/error/validation.json +10 -0
  31. data/spec/fixtures/mc_recording_list.json +51 -0
  32. data/spec/fixtures/meeting/create.json +24 -0
  33. data/spec/fixtures/meeting/delete.json +4 -0
  34. data/spec/fixtures/meeting/end.json +4 -0
  35. data/spec/fixtures/meeting/get.json +34 -0
  36. data/spec/fixtures/meeting/list.json +32 -0
  37. data/spec/fixtures/meeting/live.json +32 -0
  38. data/spec/fixtures/meeting/register.json +7 -0
  39. data/spec/fixtures/meeting/update.json +4 -0
  40. data/spec/fixtures/metrics_crc.json +105 -0
  41. data/spec/fixtures/metrics_meetingdetail.json +32 -0
  42. data/spec/fixtures/metrics_meetings.json +26 -0
  43. data/spec/fixtures/recording_delete.json +4 -0
  44. data/spec/fixtures/recording_get.json +37 -0
  45. data/spec/fixtures/recording_list.json +51 -0
  46. data/spec/fixtures/report/getaccountreport.json +23 -0
  47. data/spec/fixtures/report/getaudioreport.json +22 -0
  48. data/spec/fixtures/report/getdailyreport.json +13 -0
  49. data/spec/fixtures/report/getuserreport.json +24 -0
  50. data/spec/fixtures/report_getaccountreport.json +23 -0
  51. data/spec/fixtures/report_getdailyreport.json +83 -0
  52. data/spec/fixtures/report_getuserreport.json +24 -0
  53. data/spec/fixtures/user/assistant/delete.json +5 -0
  54. data/spec/fixtures/user/assistant/set.json +5 -0
  55. data/spec/fixtures/user/autocreate.json +51 -0
  56. data/spec/fixtures/user/autocreate2.json +51 -0
  57. data/spec/fixtures/user/create.json +7 -0
  58. data/spec/fixtures/user/custcreate.json +10 -0
  59. data/spec/fixtures/user/delete.json +0 -0
  60. data/spec/fixtures/user/get.json +23 -0
  61. data/spec/fixtures/user/getbyemail.json +8 -0
  62. data/spec/fixtures/user/list.json +23 -0
  63. data/spec/fixtures/user/pending.json +56 -0
  64. data/spec/fixtures/user/permanent_delete.json +4 -0
  65. data/spec/fixtures/user/update.json +0 -0
  66. data/spec/fixtures/webinar/create.json +29 -0
  67. data/spec/fixtures/webinar/delete.json +0 -0
  68. data/spec/fixtures/webinar/list.json +20 -0
  69. data/spec/fixtures/webinar/registrant/add.json +7 -0
  70. data/spec/fixtures/webinar/registrant/list.json +36 -0
  71. data/spec/fixtures/webinar/update.json +0 -0
  72. data/spec/fixtures/webinar_delete.json +4 -0
  73. data/spec/fixtures/webinar_end.json +4 -0
  74. data/spec/fixtures/webinar_get.json +17 -0
  75. data/spec/fixtures/webinar_update.json +4 -0
  76. data/spec/lib/zoom/actions/group/create_spec.rb +3 -0
  77. data/spec/lib/zoom/actions/group/delete_spec.rb +3 -0
  78. data/spec/lib/zoom/actions/group/edit_spec.rb +3 -0
  79. data/spec/lib/zoom/actions/group/get_spec.rb +3 -0
  80. data/spec/lib/zoom/actions/group/list_spec.rb +3 -0
  81. data/spec/lib/zoom/actions/group/member/add_spec.rb +3 -0
  82. data/spec/lib/zoom/actions/group/member/delete_spec.rb +3 -0
  83. data/spec/lib/zoom/actions/group/member/list_spec.rb +3 -0
  84. data/spec/lib/zoom/actions/im/chat/get_spec.rb +64 -0
  85. data/spec/lib/zoom/actions/im/chat/list_spec.rb +58 -0
  86. data/spec/lib/zoom/actions/im/group/create_spec.rb +3 -0
  87. data/spec/lib/zoom/actions/im/group/delete_spec.rb +3 -0
  88. data/spec/lib/zoom/actions/im/group/edit_spec.rb +3 -0
  89. data/spec/lib/zoom/actions/im/group/get_spec.rb +3 -0
  90. data/spec/lib/zoom/actions/im/group/list_spec.rb +3 -0
  91. data/spec/lib/zoom/actions/im/group/member/add_spec.rb +3 -0
  92. data/spec/lib/zoom/actions/im/group/member/delete_spec.rb +3 -0
  93. data/spec/lib/zoom/actions/im/group/member/list_spec.rb +3 -0
  94. data/spec/lib/zoom/actions/m323/device/create_spec.rb +3 -0
  95. data/spec/lib/zoom/actions/m323/device/delete_spec.rb +3 -0
  96. data/spec/lib/zoom/actions/m323/device/list_spec.rb +3 -0
  97. data/spec/lib/zoom/actions/m323/device/update_spec.rb +3 -0
  98. data/spec/lib/zoom/actions/ma/account/billing_update_spec.rb +3 -0
  99. data/spec/lib/zoom/actions/ma/account/create_spec.rb +3 -0
  100. data/spec/lib/zoom/actions/ma/account/delete_spec.rb +3 -0
  101. data/spec/lib/zoom/actions/ma/account/get_spec.rb +3 -0
  102. data/spec/lib/zoom/actions/ma/account/list_spec.rb +3 -0
  103. data/spec/lib/zoom/actions/ma/account/plan/add_spec.rb +0 -0
  104. data/spec/lib/zoom/actions/ma/account/plan/get_spec.rb +0 -0
  105. data/spec/lib/zoom/actions/ma/account/plan/subscribe_spec.rb +3 -0
  106. data/spec/lib/zoom/actions/ma/account/plan/update_spec.rb +3 -0
  107. data/spec/lib/zoom/actions/meeting/create_spec.rb +66 -0
  108. data/spec/lib/zoom/actions/meeting/delete_spec.rb +55 -0
  109. data/spec/lib/zoom/actions/meeting/end_spec.rb +55 -0
  110. data/spec/lib/zoom/actions/meeting/get_spec.rb +59 -0
  111. data/spec/lib/zoom/actions/meeting/list_spec.rb +48 -0
  112. data/spec/lib/zoom/actions/meeting/live_spec.rb +43 -0
  113. data/spec/lib/zoom/actions/meeting/register_spec.rb +45 -0
  114. data/spec/lib/zoom/actions/meeting/update_spec.rb +53 -0
  115. data/spec/lib/zoom/actions/metrics/crc_spec.rb +48 -0
  116. data/spec/lib/zoom/actions/metrics/im_spec.rb +3 -0
  117. data/spec/lib/zoom/actions/metrics/meetingdetail_spec.rb +51 -0
  118. data/spec/lib/zoom/actions/metrics/meetings_spec.rb +61 -0
  119. data/spec/lib/zoom/actions/metrics/qos_spec.rb +3 -0
  120. data/spec/lib/zoom/actions/metrics/webinardetail_spec.rb +3 -0
  121. data/spec/lib/zoom/actions/metrics/webinars_spec.rb +3 -0
  122. data/spec/lib/zoom/actions/metrics/zoomroomdetail_spec.rb +3 -0
  123. data/spec/lib/zoom/actions/metrics/zoomrooms_spec.rb +3 -0
  124. data/spec/lib/zoom/actions/recording/delete_spec.rb +52 -0
  125. data/spec/lib/zoom/actions/recording/get_spec.rb +66 -0
  126. data/spec/lib/zoom/actions/recording/list_spec.rb +51 -0
  127. data/spec/lib/zoom/actions/recording/mc_list_spec.rb +51 -0
  128. data/spec/lib/zoom/actions/report/getaccountreport_spec.rb +57 -0
  129. data/spec/lib/zoom/actions/report/getaudioreport_spec.rb +3 -0
  130. data/spec/lib/zoom/actions/report/getdailyreport_spec.rb +62 -0
  131. data/spec/lib/zoom/actions/report/getuserreport_spec.rb +67 -0
  132. data/spec/lib/zoom/actions/user/activate_spec.rb +3 -0
  133. data/spec/lib/zoom/actions/user/assistant/delete_spec.rb +3 -0
  134. data/spec/lib/zoom/actions/user/assistant/set_spec.rb +3 -0
  135. data/spec/lib/zoom/actions/user/autocreate2_spec.rb +59 -0
  136. data/spec/lib/zoom/actions/user/autocreate_spec.rb +58 -0
  137. data/spec/lib/zoom/actions/user/checkemail_spec.rb +3 -0
  138. data/spec/lib/zoom/actions/user/checkzpk_spec.rb +3 -0
  139. data/spec/lib/zoom/actions/user/create_spec.rb +69 -0
  140. data/spec/lib/zoom/actions/user/custcreate_spec.rb +59 -0
  141. data/spec/lib/zoom/actions/user/deactivate_spec.rb +3 -0
  142. data/spec/lib/zoom/actions/user/delete_spec.rb +40 -0
  143. data/spec/lib/zoom/actions/user/get_spec.rb +50 -0
  144. data/spec/lib/zoom/actions/user/getbyemail_spec.rb +54 -0
  145. data/spec/lib/zoom/actions/user/list_spec.rb +47 -0
  146. data/spec/lib/zoom/actions/user/revoketoken_spec.rb +3 -0
  147. data/spec/lib/zoom/actions/user/update_spec.rb +40 -0
  148. data/spec/lib/zoom/actions/user/updatepassword_spec.rb +3 -0
  149. data/spec/lib/zoom/actions/webinar/attendees_list_spec.rb +3 -0
  150. data/spec/lib/zoom/actions/webinar/create_spec.rb +52 -0
  151. data/spec/lib/zoom/actions/webinar/delete_spec.rb +40 -0
  152. data/spec/lib/zoom/actions/webinar/end_spec.rb +3 -0
  153. data/spec/lib/zoom/actions/webinar/get_spec.rb +65 -0
  154. data/spec/lib/zoom/actions/webinar/list_registration_spec.rb +3 -0
  155. data/spec/lib/zoom/actions/webinar/list_spec.rb +48 -0
  156. data/spec/lib/zoom/actions/webinar/panelists_spec.rb +3 -0
  157. data/spec/lib/zoom/actions/webinar/polls_spec.rb +3 -0
  158. data/spec/lib/zoom/actions/webinar/questions_spec.rb +3 -0
  159. data/spec/lib/zoom/actions/webinar/register_spec.rb +3 -0
  160. data/spec/lib/zoom/actions/webinar/registrants/add_spec.rb +60 -0
  161. data/spec/lib/zoom/actions/webinar/registrants/approve_spec.rb +3 -0
  162. data/spec/lib/zoom/actions/webinar/registrants/list_spec.rb +40 -0
  163. data/spec/lib/zoom/actions/webinar/registration_cancel_spec.rb +3 -0
  164. data/spec/lib/zoom/actions/webinar/registration_spec.rb +3 -0
  165. data/spec/lib/zoom/actions/webinar/update_spec.rb +40 -0
  166. data/spec/lib/zoom/actions/webinar/uuid_list_spec.rb +3 -0
  167. data/spec/lib/zoom/client_spec.rb +45 -0
  168. data/spec/lib/zoom/params_spec.rb +68 -0
  169. data/spec/lib/zoom/utils_spec.rb +73 -0
  170. data/spec/spec_helper.rb +35 -0
  171. data/zoom_rb.gemspec +29 -0
  172. metadata +483 -0
@@ -0,0 +1,32 @@
1
+ {
2
+ "page_count": 5,
3
+ "total_records": 235,
4
+ "page_number": 1,
5
+ "page_size": 50,
6
+ "meetings": [
7
+ {
8
+ "uuid": "unique_id",
9
+ "id": "123456789",
10
+ "start_url": "https://zoom.us/s/123456789?zak=xxxxxx",
11
+ "join_url": "https://zoom.us/j/123456789",
12
+ "created_at": "2012-11-25T12:00:00Z",
13
+ "host_id": "unique_id",
14
+ "topic": "Topic for this meeting",
15
+ "type": 2,
16
+ "start_time": "2012-11-25T12:00:00Z",
17
+ "duration": 30,
18
+ "timezone": "America/Los_Angeles",
19
+ "password": "123",
20
+ "h323_password": "123456",
21
+ "option_jbh": false,
22
+ "option_start_type": "video",
23
+ "option_host_video": false,
24
+ "option_participants_video": false,
25
+ "option_audio": "both",
26
+ "option_enforce_login": false,
27
+ "option_enforce_login_domains ": "",
28
+ "option_alternative_hosts": "",
29
+ "status": 0
30
+ }
31
+ ]
32
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "page_count": 5,
3
+ "total_records": 235,
4
+ "page_number": 1,
5
+ "page_size": 50,
6
+ "meetings": [
7
+ {
8
+ "uuid": "unique_id",
9
+ "id": "123456789",
10
+ "start_url": "https://zoom.us/s/123456789?zak=xxxxxx",
11
+ "join_url": "https://zoom.us/j/123456789",
12
+ "created_at": "2012-11-25T12:00:00Z",
13
+ "host_id": "unique_id",
14
+ "topic": "Topic for this meeting",
15
+ "type": 2,
16
+ "status": 0,
17
+ "start_time": "2012-11-25T12:00:00Z",
18
+ "duration": 30,
19
+ "timezone": "America/Los_Angeles",
20
+ "password": "123",
21
+ "h323_password": "123456",
22
+ "option_jbh": false,
23
+ "option_start_type": "video",
24
+ "option_host_video": false,
25
+ "option_participants_video": false,
26
+ "option_audio": "both",
27
+ "option_enforce_login": false,
28
+ "option_enforce_login_domains ": "",
29
+ "option_alternative_hosts": ""
30
+ }
31
+ ]
32
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "registrant_id": "555",
3
+ "id": "123456789",
4
+ "topic": "meeting registration",
5
+ "start_time": "2016-02-21T04:00:00Z",
6
+ "join_url": "https://www.zoom.us/w/869275230?tk=2DsQiu6nZVsZVATrPLvXgqPvw8mmKyxgAGaDMizLv34.DQEAAAAAM9AWXhZ2Nm5vRjIyMlRoUzE3ZktWM3l4cHVRAA"
7
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": "252482092",
3
+ "updated_at": "2013-02-25T15:52:38Z"
4
+ }
@@ -0,0 +1,105 @@
1
+
2
+ {
3
+ "from": "2016-09-21",
4
+ "to": "2016-09-21",
5
+ "crc_ports_usage": [{
6
+ "date_time": "2016-09-21",
7
+ "crc_ports_hour_usage": [{
8
+ "hour": "00",
9
+ "max_usage": 0,
10
+ "total_usage": 0
11
+ }, {
12
+ "hour": "01",
13
+ "max_usage": 0,
14
+ "total_usage": 0
15
+ }, {
16
+ "hour": "02",
17
+ "max_usage": 0,
18
+ "total_usage": 0
19
+ }, {
20
+ "hour": "03",
21
+ "max_usage": 0,
22
+ "total_usage": 0
23
+ }, {
24
+ "hour": "04",
25
+ "max_usage": 0,
26
+ "total_usage": 0
27
+ }, {
28
+ "hour": "05",
29
+ "max_usage": 0,
30
+ "total_usage": 0
31
+ }, {
32
+ "hour": "06",
33
+ "max_usage": 0,
34
+ "total_usage": 0
35
+ }, {
36
+ "hour": "07",
37
+ "max_usage": 1,
38
+ "total_usage": 1
39
+ }, {
40
+ "hour": "08",
41
+ "max_usage": 1,
42
+ "total_usage": 1
43
+ }, {
44
+ "hour": "09",
45
+ "max_usage": 3,
46
+ "total_usage": 5
47
+ }, {
48
+ "hour": "10",
49
+ "max_usage": 8,
50
+ "total_usage": 11
51
+ }, {
52
+ "hour": "11",
53
+ "max_usage": 9,
54
+ "total_usage": 12
55
+ }, {
56
+ "hour": "12",
57
+ "max_usage": 8,
58
+ "total_usage": 15
59
+ }, {
60
+ "hour": "13",
61
+ "max_usage": 7,
62
+ "total_usage": 12
63
+ }, {
64
+ "hour": "14",
65
+ "max_usage": 10,
66
+ "total_usage": 16
67
+ }, {
68
+ "hour": "15",
69
+ "max_usage": 12,
70
+ "total_usage": 14
71
+ }, {
72
+ "hour": "16",
73
+ "max_usage": 11,
74
+ "total_usage": 16
75
+ }, {
76
+ "hour": "17",
77
+ "max_usage": 11,
78
+ "total_usage": 11
79
+ }, {
80
+ "hour": "18",
81
+ "max_usage": 10,
82
+ "total_usage": 11
83
+ }, {
84
+ "hour": "19",
85
+ "max_usage": 5,
86
+ "total_usage": 5
87
+ }, {
88
+ "hour": "20",
89
+ "max_usage": 3,
90
+ "total_usage": 3
91
+ }, {
92
+ "hour": "21",
93
+ "max_usage": 3,
94
+ "total_usage": 3
95
+ }, {
96
+ "hour": "22",
97
+ "max_usage": 3,
98
+ "total_usage": 3
99
+ }, {
100
+ "hour": "23",
101
+ "max_usage": 2,
102
+ "total_usage": 3
103
+ }]
104
+ }]
105
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "uuid": "t13b6hjVQXybvGKyeHC96w==",
3
+ "id": 3035575664,
4
+ "type": "Live Meeting",
5
+ "host": "Some User",
6
+ "email": "some_user@some_domain.com",
7
+ "user_type": "Pro",
8
+ "start_time": "2016-09-27T12:02:26Z",
9
+ "end_time": "",
10
+ "duration": null,
11
+ "has_pstn": false,
12
+ "has_voip": true,
13
+ "has_3rd_party_audio": false,
14
+ "has_video": true,
15
+ "has_screen_share": false,
16
+ "recording": 0,
17
+ "participants_count": 7,
18
+ "page_count": 7,
19
+ "page_number": 1,
20
+ "page_size": 1,
21
+ "participants": [{
22
+ "user_id": "16778240",
23
+ "user_name": "SOMEUSER",
24
+ "device": "Windows",
25
+ "ip_address": "11.111.111.111",
26
+ "cn": "US",
27
+ "city": "",
28
+ "network_type": "Wifi",
29
+ "join_time": "2016-09-27T12:02:26Z",
30
+ "leave_time": "2016-09-27T12:39:10Z"
31
+ }]
32
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "from": "2016-09-26",
3
+ "to": "2016-09-27",
4
+ "page_count": 19,
5
+ "page_number": 1,
6
+ "page_size": 1,
7
+ "total_records": 1,
8
+ "type": "Live Meetings",
9
+ "meetings": [{
10
+ "uuid": "t13b6hjVQXybvGKyeHC96w==",
11
+ "id": 3035575664,
12
+ "host": "Some User",
13
+ "email": "some_user@some_domain.com",
14
+ "user_type": "Pro",
15
+ "start_time": "2016-09-27T12:02:26Z",
16
+ "end_time": "",
17
+ "duration": "",
18
+ "participants": 2,
19
+ "has_pstn": false,
20
+ "has_voip": true,
21
+ "has_3rd_party_audio": false,
22
+ "has_video": true,
23
+ "has_screen_share": false,
24
+ "recording": 0
25
+ }]
26
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": "ucc69C82Q5mTNyCRWE29Aw==",
3
+ "deleted_at": "2012-11-25T12:00:00Z"
4
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "uuid": "ucc69C82Q5mTNyCRWE29Aw==",
3
+ "meeting_number": 933560800,
4
+ "host_id": "kEFomHcIRgqxZT8D086O6A",
5
+ "account_id": "NyEqCEoYSNOr4jLMHoO2tA",
6
+ "topic": "vgfdsffdfdsf s3423432",
7
+ "start_time": "2015-04-13T01:06:04Z",
8
+ "timezone": "UTC",
9
+ "duration": 1,
10
+ "total_size": 686496,
11
+ "recording_count": 3,
12
+ "recording_files": [{
13
+ "id": "654234c0-ca6e-4dfd-a09d-54f85951658f",
14
+ "meeting_id": "ucc69C82Q5mTNyCRWE29Aw==",
15
+ "recording_start": "2015-04-13T01:06:36Z",
16
+ "recording_end": "2015-04-13T01:06:47Z",
17
+ "file_type": "MP4",
18
+ "file_size": 438482,
19
+ "play_url": "https://rocky.zoom.us/recording/play/654234c0-ca6e-4dfd-a09d-54f85951658f"
20
+ }, {
21
+ "id": "51ff09f7-e8d8-4b29-9e61-fb8e0cbc7246",
22
+ "meeting_id": "ucc69C82Q5mTNyCRWE29Aw==",
23
+ "recording_start": "2015-04-13T01:06:55Z",
24
+ "recording_end": "2015-04-13T01:07:02Z",
25
+ "file_type": "MP4",
26
+ "file_size": 244958,
27
+ "play_url": "https://rocky.zoom.us/recording/play/51ff09f7-e8d8-4b29-9e61-fb8e0cbc7246"
28
+ }, {
29
+ "id": "b601d00e-497a-450f-bb05-9896ce20c03e",
30
+ "meeting_id": "ucc69C82Q5mTNyCRWE29Aw==",
31
+ "recording_start": "2015-04-13T01:06:55Z",
32
+ "recording_end": "2015-04-13T01:07:02Z",
33
+ "file_type": "M4A",
34
+ "file_size": 3056,
35
+ "play_url": "https://rocky.zoom.us/recording/play/b601d00e-497a-450f-bb05-9896ce20c03e"
36
+ }]
37
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_number": 1,
4
+ "page_size": 15,
5
+ "total_records": 1,
6
+ "meetings": [{
7
+ "uuid": "j0N0YDBYSQGB4fRv444444==",
8
+ "meeting_number": 7565121024,
9
+ "host_id": "kEFomHcIRgqxZT8D086O6A",
10
+ "account_id": "NyEqCEoYSNOr4jLMHoO2tA",
11
+ "topic": "Rocky test recording delete",
12
+ "start_time": "2014-11-06T04:10:10Z",
13
+ "timezone": "America/Los_Angeles",
14
+ "duration": 999,
15
+ "total_size": 4324324324,
16
+ "recording_count": 4,
17
+ "recording_files": [{
18
+ "id": "00401415-6783-0B14-608A-34C1DD9E3041",
19
+ "meeting_id": "j0N0YDBYSQGB4fRv444444==",
20
+ "recording_start": "2014-11-06T04:14:10Z",
21
+ "recording_end": "2014-11-06T04:24:10Z",
22
+ "file_type": "M4A",
23
+ "file_size": 432432,
24
+ "play_url": "https://brand.zoom.us/recording/play/00401415-6783-0B14-608A-34C1DD9E3041"
25
+ }, {
26
+ "id": "00401415-6783-0B14-608A-34C1DD9E3042",
27
+ "meeting_id": "j0N0YDBYSQGB4fRv444444==",
28
+ "recording_start": "2014-11-06T04:25:10Z",
29
+ "recording_end": "2014-11-06T04:26:10Z",
30
+ "file_type": "MP4",
31
+ "file_size": 432532465,
32
+ "play_url": "https://brand.zoom.us/recording/play/00401415-6783-0B14-608A-34C1DD9E3042"
33
+ }, {
34
+ "id": "00401415-6783-0B14-608A-34C1DD9E3043",
35
+ "meeting_id": "j0N0YDBYSQGB4fRv444444==",
36
+ "recording_start": "2014-11-06T04:36:10Z",
37
+ "recording_end": "2014-11-06T04:56:10Z",
38
+ "file_type": "M4A",
39
+ "file_size": 564,
40
+ "play_url": "https://brand.zoom.us/recording/play/00401415-6783-0B14-608A-34C1DD9E3043"
41
+ }, {
42
+ "id": "00401415-6783-0B14-608A-34C1DD9E3044",
43
+ "meeting_id": "j0N0YDBYSQGB4fRv444444==",
44
+ "recording_start": "2014-11-06T04:56:10Z",
45
+ "recording_end": "2014-11-06T04:56:12Z",
46
+ "file_type": "MP4",
47
+ "file_size": 643534,
48
+ "play_url": "https://brand.zoom.us/recording/play/00401415-6783-0B14-608A-34C1DD9E3044"
49
+ }]
50
+ }]
51
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_number": 1,
4
+ "page_size": 30,
5
+ "total_records": 5,
6
+ "from": "2013-5-19",
7
+ "to": "2013-5-20",
8
+ "total_meetings": 50,
9
+ "total_participants": 100,
10
+ "total_meeting_minutes": 100,
11
+ "users": [
12
+ {
13
+ "user_id": "bNsPi5hCQ-qOzWn2EeCXJA",
14
+ "email": "john@sample.com",
15
+ "type": 2,
16
+ "meetings": 10,
17
+ "participants": 56,
18
+ "meeting_minutes": 300,
19
+ "last_client_version": "1.0.18584.0225",
20
+ "last_login_time": "2013-02-11T08:18:09Z"
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "from": "2016-01-08",
3
+ "to": "2016-01-21",
4
+ "page_count": 1,
5
+ "page_number": 1,
6
+ "page_size": 30,
7
+ "total_records": 1,
8
+ "telephony_usage": [
9
+ {
10
+ "meeting_id": 2932547621,
11
+ "phone_number": "+86 8208",
12
+ "type": "call-out",
13
+ "host_name": "test",
14
+ "host_email": "zoom.test@zoom.us",
15
+ "department": "",
16
+ "start_time": "2016-01-12T02:25:34Z",
17
+ "end_time": "2016-01-12T02:26:48Z",
18
+ "duration": 2,
19
+ "total": 0.12
20
+ }
21
+ ]
22
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "year": 2013,
3
+ "month": 5,
4
+ "dates": [
5
+ {
6
+ "meetings": 0,
7
+ "date": "2013-05-01",
8
+ "new_user": 0,
9
+ "participants": 0,
10
+ "meeting_minutes": 0
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_number": 1,
4
+ "page_size": 30,
5
+ "total_records": 5,
6
+ "from": "2013-5-19",
7
+ "to": "2013-5-20",
8
+ "meetings": [
9
+ {
10
+ "number": 111111111,
11
+ "topic": "Meeting Topic",
12
+ "start_time": "2013-02-11T08:18:09Z",
13
+ "end_time": "2013-02-11T09:18:09Z",
14
+ "duration": 60,
15
+ "participants": [
16
+ {
17
+ "name": "John",
18
+ "join_time": "2013-02-11T08:30:09Z",
19
+ "leave_time": "2013-02-11T08:50:09Z"
20
+ }
21
+ ]
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_number": 1,
4
+ "page_size": 30,
5
+ "total_records": 1,
6
+ "from": "2013-5-19",
7
+ "to": "2013-5-20",
8
+ "total_meetings": 50,
9
+ "total_participants": 100,
10
+ "total_meeting_minutes": 100,
11
+ "users": [
12
+ {
13
+ "user_id": "bNsPi5hCQ-qOzWn2EeCXJA",
14
+ "email": "john@sample.com",
15
+ "type": 2,
16
+ "meetings": 10,
17
+ "participants": 56,
18
+ "meeting_minutes": 300,
19
+ "last_client_version": "1.0.18584.0225",
20
+ "last_login_time": "2013-02-11T08:18:09Z"
21
+ }
22
+ ]
23
+ }