zoom_markazuna 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +66 -0
  3. data/.gitignore +20 -0
  4. data/Gemfile +5 -0
  5. data/Gemfile.lock +95 -0
  6. data/LICENSE +22 -0
  7. data/Makefile +5 -0
  8. data/README.md +65 -0
  9. data/lib/zoom.rb +51 -0
  10. data/lib/zoom/actions/account.rb +93 -0
  11. data/lib/zoom/actions/group.rb +8 -0
  12. data/lib/zoom/actions/im/chat.rb +27 -0
  13. data/lib/zoom/actions/im/group.rb +10 -0
  14. data/lib/zoom/actions/m323_device.rb +8 -0
  15. data/lib/zoom/actions/meeting.rb +89 -0
  16. data/lib/zoom/actions/metrics.rb +27 -0
  17. data/lib/zoom/actions/recording.rb +33 -0
  18. data/lib/zoom/actions/report.rb +55 -0
  19. data/lib/zoom/actions/user.rb +146 -0
  20. data/lib/zoom/actions/webinar.rb +115 -0
  21. data/lib/zoom/client.rb +35 -0
  22. data/lib/zoom/clients/jwt.rb +22 -0
  23. data/lib/zoom/clients/oauth.rb +17 -0
  24. data/lib/zoom/constants.rb +103 -0
  25. data/lib/zoom/error.rb +10 -0
  26. data/lib/zoom/interface.rb +6 -0
  27. data/lib/zoom/params.rb +71 -0
  28. data/lib/zoom/utils.rb +49 -0
  29. data/lib/zoom/version.rb +5 -0
  30. data/spec/fixtures/account/list.json +18 -0
  31. data/spec/fixtures/account/settings_get.json +120 -0
  32. data/spec/fixtures/chat/get.json +16 -0
  33. data/spec/fixtures/chat/list.json +16 -0
  34. data/spec/fixtures/error/already_exists.json +4 -0
  35. data/spec/fixtures/error/not_found.json +4 -0
  36. data/spec/fixtures/error/user_not_exist.json +4 -0
  37. data/spec/fixtures/error/validation.json +10 -0
  38. data/spec/fixtures/mc_recording_list.json +51 -0
  39. data/spec/fixtures/meeting/create.json +29 -0
  40. data/spec/fixtures/meeting/delete.json +4 -0
  41. data/spec/fixtures/meeting/end.json +4 -0
  42. data/spec/fixtures/meeting/get.json +34 -0
  43. data/spec/fixtures/meeting/list.json +32 -0
  44. data/spec/fixtures/meeting/live.json +32 -0
  45. data/spec/fixtures/meeting/register.json +7 -0
  46. data/spec/fixtures/meeting/update.json +4 -0
  47. data/spec/fixtures/metrics_crc.json +105 -0
  48. data/spec/fixtures/metrics_meetingdetail.json +32 -0
  49. data/spec/fixtures/metrics_meetings.json +26 -0
  50. data/spec/fixtures/recording_delete.json +4 -0
  51. data/spec/fixtures/recording_get.json +37 -0
  52. data/spec/fixtures/recording_list.json +51 -0
  53. data/spec/fixtures/report/webinar/participants.json +18 -0
  54. data/spec/fixtures/report_getaccountreport.json +23 -0
  55. data/spec/fixtures/report_getdailyreport.json +83 -0
  56. data/spec/fixtures/report_getuserreport.json +24 -0
  57. data/spec/fixtures/user/assistant/delete.json +5 -0
  58. data/spec/fixtures/user/assistant/set.json +5 -0
  59. data/spec/fixtures/user/autocreate.json +51 -0
  60. data/spec/fixtures/user/autocreate2.json +51 -0
  61. data/spec/fixtures/user/create.json +7 -0
  62. data/spec/fixtures/user/custcreate.json +10 -0
  63. data/spec/fixtures/user/delete.json +0 -0
  64. data/spec/fixtures/user/get.json +23 -0
  65. data/spec/fixtures/user/getbyemail.json +8 -0
  66. data/spec/fixtures/user/list.json +23 -0
  67. data/spec/fixtures/user/pending.json +56 -0
  68. data/spec/fixtures/user/permanent_delete.json +4 -0
  69. data/spec/fixtures/user/settings_get.json +74 -0
  70. data/spec/fixtures/user/update.json +0 -0
  71. data/spec/fixtures/webinar/create.json +29 -0
  72. data/spec/fixtures/webinar/delete.json +0 -0
  73. data/spec/fixtures/webinar/list.json +20 -0
  74. data/spec/fixtures/webinar/past_webinar_list.json +8 -0
  75. data/spec/fixtures/webinar/registrant/add.json +7 -0
  76. data/spec/fixtures/webinar/registrant/get.json +25 -0
  77. data/spec/fixtures/webinar/registrant/list.json +36 -0
  78. data/spec/fixtures/webinar/update.json +0 -0
  79. data/spec/fixtures/webinar_delete.json +4 -0
  80. data/spec/fixtures/webinar_end.json +4 -0
  81. data/spec/fixtures/webinar_get.json +17 -0
  82. data/spec/fixtures/webinar_update.json +4 -0
  83. data/spec/lib/zoom/actions/account/list_spec.rb +58 -0
  84. data/spec/lib/zoom/actions/account/settings_get_spec.rb +50 -0
  85. data/spec/lib/zoom/actions/group/create_spec.rb +3 -0
  86. data/spec/lib/zoom/actions/group/delete_spec.rb +3 -0
  87. data/spec/lib/zoom/actions/group/edit_spec.rb +3 -0
  88. data/spec/lib/zoom/actions/group/get_spec.rb +3 -0
  89. data/spec/lib/zoom/actions/group/list_spec.rb +3 -0
  90. data/spec/lib/zoom/actions/group/member/add_spec.rb +3 -0
  91. data/spec/lib/zoom/actions/group/member/delete_spec.rb +3 -0
  92. data/spec/lib/zoom/actions/group/member/list_spec.rb +3 -0
  93. data/spec/lib/zoom/actions/im/chat/get_spec.rb +64 -0
  94. data/spec/lib/zoom/actions/im/chat/list_spec.rb +58 -0
  95. data/spec/lib/zoom/actions/im/group/create_spec.rb +3 -0
  96. data/spec/lib/zoom/actions/im/group/delete_spec.rb +3 -0
  97. data/spec/lib/zoom/actions/im/group/edit_spec.rb +3 -0
  98. data/spec/lib/zoom/actions/im/group/get_spec.rb +3 -0
  99. data/spec/lib/zoom/actions/im/group/list_spec.rb +3 -0
  100. data/spec/lib/zoom/actions/im/group/member/add_spec.rb +3 -0
  101. data/spec/lib/zoom/actions/im/group/member/delete_spec.rb +3 -0
  102. data/spec/lib/zoom/actions/im/group/member/list_spec.rb +3 -0
  103. data/spec/lib/zoom/actions/m323/device/create_spec.rb +3 -0
  104. data/spec/lib/zoom/actions/m323/device/delete_spec.rb +3 -0
  105. data/spec/lib/zoom/actions/m323/device/list_spec.rb +3 -0
  106. data/spec/lib/zoom/actions/m323/device/update_spec.rb +3 -0
  107. data/spec/lib/zoom/actions/ma/account/billing_update_spec.rb +3 -0
  108. data/spec/lib/zoom/actions/ma/account/create_spec.rb +3 -0
  109. data/spec/lib/zoom/actions/ma/account/delete_spec.rb +3 -0
  110. data/spec/lib/zoom/actions/ma/account/get_spec.rb +3 -0
  111. data/spec/lib/zoom/actions/ma/account/list_spec.rb +3 -0
  112. data/spec/lib/zoom/actions/ma/account/plan/add_spec.rb +0 -0
  113. data/spec/lib/zoom/actions/ma/account/plan/get_spec.rb +0 -0
  114. data/spec/lib/zoom/actions/ma/account/plan/subscribe_spec.rb +3 -0
  115. data/spec/lib/zoom/actions/ma/account/plan/update_spec.rb +3 -0
  116. data/spec/lib/zoom/actions/meeting/create_spec.rb +63 -0
  117. data/spec/lib/zoom/actions/meeting/delete_spec.rb +55 -0
  118. data/spec/lib/zoom/actions/meeting/end_spec.rb +55 -0
  119. data/spec/lib/zoom/actions/meeting/get_spec.rb +59 -0
  120. data/spec/lib/zoom/actions/meeting/list_spec.rb +48 -0
  121. data/spec/lib/zoom/actions/meeting/live_spec.rb +43 -0
  122. data/spec/lib/zoom/actions/meeting/register_spec.rb +45 -0
  123. data/spec/lib/zoom/actions/meeting/update_spec.rb +53 -0
  124. data/spec/lib/zoom/actions/metrics/crc_spec.rb +48 -0
  125. data/spec/lib/zoom/actions/metrics/im_spec.rb +3 -0
  126. data/spec/lib/zoom/actions/metrics/meetingdetail_spec.rb +51 -0
  127. data/spec/lib/zoom/actions/metrics/meetings_spec.rb +61 -0
  128. data/spec/lib/zoom/actions/metrics/qos_spec.rb +3 -0
  129. data/spec/lib/zoom/actions/metrics/webinardetail_spec.rb +3 -0
  130. data/spec/lib/zoom/actions/metrics/webinars_spec.rb +3 -0
  131. data/spec/lib/zoom/actions/metrics/zoomroomdetail_spec.rb +3 -0
  132. data/spec/lib/zoom/actions/metrics/zoomrooms_spec.rb +3 -0
  133. data/spec/lib/zoom/actions/recording/delete_spec.rb +52 -0
  134. data/spec/lib/zoom/actions/recording/get_spec.rb +66 -0
  135. data/spec/lib/zoom/actions/recording/list_spec.rb +51 -0
  136. data/spec/lib/zoom/actions/recording/mc_list_spec.rb +51 -0
  137. data/spec/lib/zoom/actions/report/daily_report_spec.rb +0 -0
  138. data/spec/lib/zoom/actions/report/hosts_report_spec.rb +0 -0
  139. data/spec/lib/zoom/actions/report/meeting_details_report_spec.rb +0 -0
  140. data/spec/lib/zoom/actions/report/meeting_participants_report_spec.rb +0 -0
  141. data/spec/lib/zoom/actions/report/meeting_polls_report_spec.rb +0 -0
  142. data/spec/lib/zoom/actions/report/meetings_report_spec.rb +0 -0
  143. data/spec/lib/zoom/actions/report/telephone_report_spec.rb +0 -0
  144. data/spec/lib/zoom/actions/report/webinar_details_report_spec.rb +0 -0
  145. data/spec/lib/zoom/actions/report/webinar_participants_report_spec.rb +44 -0
  146. data/spec/lib/zoom/actions/report/webinar_polls_report_spec.rb +0 -0
  147. data/spec/lib/zoom/actions/report/webinar_qa_report_spec.rb +0 -0
  148. data/spec/lib/zoom/actions/user/activate_spec.rb +3 -0
  149. data/spec/lib/zoom/actions/user/assistant/delete_spec.rb +3 -0
  150. data/spec/lib/zoom/actions/user/assistant/set_spec.rb +3 -0
  151. data/spec/lib/zoom/actions/user/autocreate2_spec.rb +59 -0
  152. data/spec/lib/zoom/actions/user/autocreate_spec.rb +58 -0
  153. data/spec/lib/zoom/actions/user/checkemail_spec.rb +3 -0
  154. data/spec/lib/zoom/actions/user/checkzpk_spec.rb +3 -0
  155. data/spec/lib/zoom/actions/user/create_spec.rb +102 -0
  156. data/spec/lib/zoom/actions/user/custcreate_spec.rb +59 -0
  157. data/spec/lib/zoom/actions/user/deactivate_spec.rb +3 -0
  158. data/spec/lib/zoom/actions/user/delete_spec.rb +44 -0
  159. data/spec/lib/zoom/actions/user/get_spec.rb +54 -0
  160. data/spec/lib/zoom/actions/user/getbyemail_spec.rb +54 -0
  161. data/spec/lib/zoom/actions/user/list_spec.rb +50 -0
  162. data/spec/lib/zoom/actions/user/revoketoken_spec.rb +3 -0
  163. data/spec/lib/zoom/actions/user/settings_get_spec.rb +56 -0
  164. data/spec/lib/zoom/actions/user/update_spec.rb +45 -0
  165. data/spec/lib/zoom/actions/user/updatepassword_spec.rb +3 -0
  166. data/spec/lib/zoom/actions/webinar/attendees_list_spec.rb +3 -0
  167. data/spec/lib/zoom/actions/webinar/create_spec.rb +59 -0
  168. data/spec/lib/zoom/actions/webinar/delete_spec.rb +44 -0
  169. data/spec/lib/zoom/actions/webinar/end_spec.rb +3 -0
  170. data/spec/lib/zoom/actions/webinar/get_spec.rb +66 -0
  171. data/spec/lib/zoom/actions/webinar/list_registration_spec.rb +3 -0
  172. data/spec/lib/zoom/actions/webinar/list_spec.rb +50 -0
  173. data/spec/lib/zoom/actions/webinar/panelists_spec.rb +3 -0
  174. data/spec/lib/zoom/actions/webinar/past_webinar_list_spec.rb +44 -0
  175. data/spec/lib/zoom/actions/webinar/polls_spec.rb +3 -0
  176. data/spec/lib/zoom/actions/webinar/questions_spec.rb +3 -0
  177. data/spec/lib/zoom/actions/webinar/register_spec.rb +3 -0
  178. data/spec/lib/zoom/actions/webinar/registrants/add_spec.rb +64 -0
  179. data/spec/lib/zoom/actions/webinar/registrants/get_spec.rb +49 -0
  180. data/spec/lib/zoom/actions/webinar/registrants/list_spec.rb +43 -0
  181. data/spec/lib/zoom/actions/webinar/registrants/update_status_spec.rb +42 -0
  182. data/spec/lib/zoom/actions/webinar/registration_cancel_spec.rb +3 -0
  183. data/spec/lib/zoom/actions/webinar/registration_spec.rb +3 -0
  184. data/spec/lib/zoom/actions/webinar/update_spec.rb +44 -0
  185. data/spec/lib/zoom/actions/webinar/uuid_list_spec.rb +3 -0
  186. data/spec/lib/zoom/client_spec.rb +76 -0
  187. data/spec/lib/zoom/params_spec.rb +81 -0
  188. data/spec/lib/zoom/utils_spec.rb +48 -0
  189. data/spec/spec_helper.rb +43 -0
  190. data/zoom_rb.gemspec +33 -0
  191. metadata +518 -0
@@ -0,0 +1,16 @@
1
+ {
2
+ "session_id": "123456",
3
+ "group_name": "zoom",
4
+ "from": "2018-08-28",
5
+ "to": "2018-08-29",
6
+ "page_size": 30,
7
+ "page_count": 1,
8
+ "next_page_token": "",
9
+ "chat_messages": [
10
+ {
11
+ "message": "test1",
12
+ "sender": "",
13
+ "date_time": "2016-01-18T06:40:56Z"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "from": "2018-08-28",
3
+ "to": "2018-08-29",
4
+ "page_size": 30,
5
+ "page_count": 1,
6
+ "next_page_token": "",
7
+ "chat_list": [
8
+ {
9
+ "session_id": "555",
10
+ "type": "Group",
11
+ "participants": "",
12
+ "group_name": "zoom test1",
13
+ "last_message_send_time": "2016-01-18T06:40:56Z"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "code": 1005,
3
+ "message": "User already in the account: foo@bar.com"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "code": 1010,
3
+ "message": "User not belong to this account"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "code": 1001,
3
+ "message": "User not exist: foo"
4
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "code": 300,
3
+ "message": "Validation Failed.",
4
+ "errors": [
5
+ {
6
+ "field": "user_info.type",
7
+ "message": "Missing field."
8
+ }
9
+ ]
10
+ }
@@ -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": "Rcoky 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
+ "file_path": "/home/cmr-ssh/replay/2015/03/27/454289936/EDB9994C-8E0D-4688-B1CE-6460F2742A10/GMT20150327-083026_test-pmem-recording.mp4"
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
+ "file_path": "/home/cmr-ssh/replay/2015/03/27/454289936/EDB9994C-8E0D-4688-B1CE-6460F2742A10/GMT20150327-083026_test-pmem-recording.mp4"
49
+ }]
50
+ }]
51
+ }
@@ -0,0 +1,29 @@
1
+ {
2
+ "uuid": "unique_id",
3
+ "id": "123456789",
4
+ "host_id": "8MheRP7ZT-2hDySevBj5Gg",
5
+ "topic": "Foo",
6
+ "type": 2,
7
+ "start_time": "2018-10-09T05:49:21Z",
8
+ "duration": 60,
9
+ "timezone": "America/Los_Angeles",
10
+ "created_at": "2018-10-09T05:49:21Z",
11
+ "start_url": "https://zoom.us/s/123456789?zak=xxxxxx",
12
+ "join_url": "https://zoom.us/j/123456789",
13
+ "settings": {
14
+ "host_video": false,
15
+ "participant_video": false,
16
+ "cn_meeting": false,
17
+ "in_meeting": false,
18
+ "join_before_host": true,
19
+ "mute_upon_entry": false,
20
+ "watermark": false,
21
+ "use_pmi": false,
22
+ "approval_type": 2,
23
+ "audio": "both",
24
+ "auto_recording": "none",
25
+ "enforce_login": false,
26
+ "enforce_login_domains": "",
27
+ "alternative_hosts": ""
28
+ }
29
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": "252482092",
3
+ "deleted_at": "2013-04-05T15:50:47Z"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": "123456789",
3
+ "ended_at": "2012-11-25T12:00:00Z"
4
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "uuid": "unique_id",
3
+ "id": "123456789",
4
+ "host_id": "dh23hdu23gd",
5
+ "topic": "Zoom Meeting",
6
+ "password": "",
7
+ "h323_password": "",
8
+ "status": 0,
9
+ "option_jbh": false,
10
+ "option_start_type": "video",
11
+ "option_host_video": true,
12
+ "option_participants_video": true,
13
+ "option_cn_meeting": false,
14
+ "option_enforce_login": false,
15
+ "option_enforce_login_domains": "",
16
+ "option_in_meeting": false,
17
+ "option_audio": "both",
18
+ "option_alternative_hosts": "",
19
+ "option_use_pmi": false,
20
+ "type": 8,
21
+ "start_time": "2012-11-25T12:00:00Z",
22
+ "duration": 0,
23
+ "timezone": "Asia/Hong_Kong",
24
+ "start_url": "https://zoom.us/s/123456789?zpk=hs65q23kd9sqliy612h23k",
25
+ "join_url": "https://zoom.us/j/123456789",
26
+ "created_at": "2016-12-20T02:51:42Z",
27
+ "occurrences": [
28
+ {
29
+ "occurrence_id": "1483210260000",
30
+ "start_time": "2017-01-01T02:51:00Z",
31
+ "duration": 60
32
+ }
33
+ ]
34
+ }
@@ -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
+ }