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,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,18 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_size": 1,
4
+ "total_records": 1,
5
+ "next_page_token": "test",
6
+ "participants": [
7
+ {
8
+ "id": "test-uuid",
9
+ "user_id": "test@test.com",
10
+ "name": "Test",
11
+ "user_email": "testuser@test.com",
12
+ "join_time": "2019-01-01T09:00:00Z",
13
+ "leave_time": "2019-01-01T09:00:00Z",
14
+ "duration": 60,
15
+ "attentiveness_score": "10"
16
+ }
17
+ ]
18
+ }
@@ -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
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "year": 2017,
3
+ "month": 7,
4
+ "dates": [{
5
+ "date": "2017-07-01",
6
+ "new_user": 3,
7
+ "meetings": 91,
8
+ "participants": 718,
9
+ "meeting_minutes": 23727
10
+ }, {
11
+ "date": "2017-07-02",
12
+ "new_user": 2,
13
+ "meetings": 58,
14
+ "participants": 386,
15
+ "meeting_minutes": 11231
16
+ }, {
17
+ "date": "2017-07-03",
18
+ "new_user": 30,
19
+ "meetings": 949,
20
+ "participants": 5659,
21
+ "meeting_minutes": 181850
22
+ }, {
23
+ "date": "2017-07-04",
24
+ "new_user": 15,
25
+ "meetings": 406,
26
+ "participants": 2285,
27
+ "meeting_minutes": 84995
28
+ }, {
29
+ "date": "2017-07-05",
30
+ "new_user": 20,
31
+ "meetings": 1689,
32
+ "participants": 11412,
33
+ "meeting_minutes": 356152
34
+ }, {
35
+ "date": "2017-07-06",
36
+ "new_user": 35,
37
+ "meetings": 1973,
38
+ "participants": 13602,
39
+ "meeting_minutes": 420625
40
+ }, {
41
+ "date": "2017-07-07",
42
+ "new_user": 35,
43
+ "meetings": 1804,
44
+ "participants": 12636,
45
+ "meeting_minutes": 401873
46
+ }, {
47
+ "date": "2017-07-08",
48
+ "new_user": 8,
49
+ "meetings": 95,
50
+ "participants": 640,
51
+ "meeting_minutes": 20480
52
+ }, {
53
+ "date": "2017-07-09",
54
+ "new_user": 1,
55
+ "meetings": 58,
56
+ "participants": 479,
57
+ "meeting_minutes": 28310
58
+ }, {
59
+ "date": "2017-07-10",
60
+ "new_user": 32,
61
+ "meetings": 1724,
62
+ "participants": 11584,
63
+ "meeting_minutes": 369700
64
+ }, {
65
+ "date": "2017-07-11",
66
+ "new_user": 39,
67
+ "meetings": 1920,
68
+ "participants": 13734,
69
+ "meeting_minutes": 431274
70
+ }, {
71
+ "date": "2017-07-12",
72
+ "new_user": 46,
73
+ "meetings": 1896,
74
+ "participants": 12954,
75
+ "meeting_minutes": 417033
76
+ }, {
77
+ "date": "2017-07-13",
78
+ "new_user": 29,
79
+ "meetings": 834,
80
+ "participants": 5366,
81
+ "meeting_minutes": 164558
82
+ }]
83
+ }
@@ -0,0 +1,24 @@
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
+ "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,5 @@
1
+ {
2
+ "id": "555",
3
+ "host_email": "foo@bar.com",
4
+ "updated_at": "2013-09-02T12:00:00Z"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "555",
3
+ "host_email": "foo@bar.com",
4
+ "updated_at": "2013-09-02T12:00:00Z"
5
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "email": "foo@bar.com",
3
+ "id": "unique_id",
4
+ "created_at": "2012-11-25T12:00:00Z",
5
+ "first_name": "Zoomie",
6
+ "last_name": "Userton",
7
+ "pic_url": "",
8
+ "type": 1,
9
+ "disable_chat": false,
10
+ "enable_e2e_encryption": false,
11
+ "enable_silent_mode": true,
12
+ "disable_group_hd": false,
13
+ "disable_recording": false,
14
+ "enable_cmr": false,
15
+ "enable_auto_recording": false,
16
+ "enable_cloud_auto_recording": false,
17
+ "verified": 1,
18
+ "pmi": 2035134243,
19
+ "meeting_capacity": 0,
20
+ "enable_webinar": false,
21
+ "webinar_capacity": 0,
22
+ "enable_large": false,
23
+ "large_capacity": 0,
24
+ "disable_feedback": false,
25
+ "disable_jbh_reminder": true,
26
+ "enable_breakout_room": true,
27
+ "enable_polling": false,
28
+ "enable_annotation": false,
29
+ "enable_share_dual_camera": false,
30
+ "enable_far_end_camera_control": false,
31
+ "disable_private_chat": false,
32
+ "enable_enter_exit_chime": false,
33
+ "disable_cancel_meeting_notification": false,
34
+ "enable_remote_support": false,
35
+ "enable_file_transfer": false,
36
+ "enable_virtual_background": false,
37
+ "enable_attention_tracking": false,
38
+ "enable_waiting_room": false,
39
+ "enable_closed_caption": false,
40
+ "enable_co_host": false,
41
+ "enable_auto_saving_chats": false,
42
+ "enable_phone_participants_password": false,
43
+ "enable_auto_delete_cmr": true,
44
+ "auto_delete_cmr_days": 30,
45
+ "dept": "Engineer",
46
+ "lastClientVersion": "",
47
+ "lastLoginTime": "",
48
+ "token": "",
49
+ "zpk": "",
50
+ "zak": ""
51
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "email": "foo@bar.com",
3
+ "id": "unique_id",
4
+ "created_at": "2012-11-25T12:00:00Z",
5
+ "first_name": "Zoomie",
6
+ "last_name": "Userton",
7
+ "pic_url": "",
8
+ "type": 1,
9
+ "disable_chat": false,
10
+ "enable_e2e_encryption": false,
11
+ "enable_silent_mode": true,
12
+ "disable_group_hd": false,
13
+ "disable_recording": false,
14
+ "enable_cmr": false,
15
+ "enable_auto_recording": false,
16
+ "enable_cloud_auto_recording": false,
17
+ "verified": 1,
18
+ "pmi": 2035134243,
19
+ "meeting_capacity": 0,
20
+ "enable_webinar": false,
21
+ "webinar_capacity": 0,
22
+ "enable_large": false,
23
+ "large_capacity": 0,
24
+ "disable_feedback": false,
25
+ "disable_jbh_reminder": true,
26
+ "enable_breakout_room": true,
27
+ "enable_polling": false,
28
+ "enable_annotation": false,
29
+ "enable_share_dual_camera": false,
30
+ "enable_far_end_camera_control": false,
31
+ "disable_private_chat": false,
32
+ "enable_enter_exit_chime": false,
33
+ "disable_cancel_meeting_notification": false,
34
+ "enable_remote_support": false,
35
+ "enable_file_transfer": false,
36
+ "enable_virtual_background": false,
37
+ "enable_attention_tracking": false,
38
+ "enable_waiting_room": false,
39
+ "enable_closed_caption": false,
40
+ "enable_co_host": false,
41
+ "enable_auto_saving_chats": false,
42
+ "enable_phone_participants_password": false,
43
+ "enable_auto_delete_cmr": true,
44
+ "auto_delete_cmr_days": 30,
45
+ "dept": "Engineer",
46
+ "lastClientVersion": "",
47
+ "lastLoginTime": "",
48
+ "token": "",
49
+ "zpk": "",
50
+ "zak": ""
51
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "id": "foobar",
3
+ "first_name": "Zoomie",
4
+ "last_name": "Userton",
5
+ "email": "foo@bar.com",
6
+ "type": 1
7
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "id": "eIimBAXqSrWOcB_EOIXTog",
3
+ "email": "foo@bar.com",
4
+ "first_name": "Foo",
5
+ "last_name": "Bar",
6
+ "type": 1,
7
+ "verified": 0,
8
+ "created_at": "2013-04-04T15:57:55Z",
9
+ "token": null
10
+ }
File without changes
@@ -0,0 +1,23 @@
1
+ {
2
+ "id": "ufR9342pRyf8ePFN92dttQ",
3
+ "first_name": "Zoomie",
4
+ "last_name": "Userton",
5
+ "email": "foo@bar.com",
6
+ "type": 1,
7
+ "pmi": "string",
8
+ "timezone": "string",
9
+ "dept": "string",
10
+ "created_at": "2018-09-25T23:13:05.014Z",
11
+ "last_login_time": "2018-09-25T23:13:05.014Z",
12
+ "last_client_version": "string",
13
+ "vanity_url": "string",
14
+ "personal_meeting_url": "string",
15
+ "verified": 0,
16
+ "pic_url": "string",
17
+ "cms_user_id": "string",
18
+ "account_id": "string",
19
+ "host_key": "string",
20
+ "use_pmi": true,
21
+ "group_ids": ["string"],
22
+ "im_group_ids": ["string"]
23
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "id": "ufR9342pRyf8ePFN92dttQ",
3
+ "first_name": "Bar",
4
+ "email": "foo@bar.com",
5
+ "last_name": "Foo",
6
+ "created_at": "2013-01-30T12:19:17Z",
7
+ "type": 99
8
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_number": 1,
4
+ "page_size": 30,
5
+ "total_records": 1,
6
+ "users": [
7
+ {
8
+ "id": "foobar",
9
+ "first_name": "Zoomie",
10
+ "last_name": "Userton",
11
+ "email": "foo@bar.com",
12
+ "type": 1,
13
+ "pmi": "string",
14
+ "timezone": "string",
15
+ "dept": "string",
16
+ "created_at": "2018-09-12T20:35:07.578Z",
17
+ "last_login_time": "2018-09-12T20:35:07.578Z",
18
+ "last_client_version": "string",
19
+ "group_ids": ["string"],
20
+ "im_group_ids": ["string"]
21
+ }
22
+ ]
23
+ }