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,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
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "page_count": 5,
3
+ "total_records": 235,
4
+ "page_number": 1,
5
+ "page_size": 2,
6
+ "users": [
7
+ {
8
+ "email": "test@abc.com ",
9
+ "id": "dsfs23css23",
10
+ "created_at": "2012-11-25T12:00:00Z",
11
+ "first_name": "Lucy",
12
+ "last_name": "Li",
13
+ "type": 1,
14
+ "pic_url": "https://www.zoom.us/p/bNsPi",
15
+ "disable_chat": false,
16
+ "enable_e2e_encryption": false,
17
+ "enable_silent_mode": false,
18
+ "disable_group_hd": false,
19
+ "disable_recording": false,
20
+ "verified": 0,
21
+ "pmi": 0,
22
+ "meeting_capacity": 0,
23
+ "enable_webinar":false,
24
+ "enable_large":false,
25
+ "disable_feedback":false,
26
+ "disable_jbh_reminder": true,
27
+ "dept":"Engineer",
28
+ "timezone": "America/Los_Angeles",
29
+ "token":""
30
+ },
31
+ {
32
+ "email": "test2@abc.com ",
33
+ "id": "dsfs23css23",
34
+ "created_at": "2012-11-25T12:00:00Z",
35
+ "first_name": "Lily",
36
+ "last_name": "Sun",
37
+ "type": 2,
38
+ "pic_url": "https://www.zoom.us/p/bNsPi",
39
+ "disable_chat": false,
40
+ "enable_e2e_encryption": false,
41
+ "enable_silent_mode": false,
42
+ "disable_group_hd": false,
43
+ "disable_recording": false,
44
+ "verified": 0,
45
+ "pmi": 0,
46
+ "meeting_capacity": 0,
47
+ "enable_webinar":false,
48
+ "enable_large":false,
49
+ "disable_feedback":false,
50
+ "disable_jbh_reminder": true,
51
+ "dept":"Engineer",
52
+ "timezone": "America/Los_Angeles",
53
+ "token":""
54
+ }
55
+ ]
56
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": "65q23kd9sqliy612h23k",
3
+ "deleted_at": "2017-11-03T18:53:40Z"
4
+ }
File without changes
@@ -0,0 +1,29 @@
1
+ {
2
+ "uuid": "someBase64str!ng",
3
+ "id": 1234567890,
4
+ "host_id": "test_user_id",
5
+ "topic": "create webinar via rest api",
6
+ "type": 5,
7
+ "start_time": "2018-09-17T21:55:25Z",
8
+ "duration": 60,
9
+ "timezone": "America/New_York",
10
+ "created_at": "2018-09-17T21:55:25Z",
11
+ "start_url": "https://zoom.us/s/really_long_string_here",
12
+ "join_url": "https://zoom.us/j/1234567890",
13
+ "settings": {
14
+ "host_video": false,
15
+ "panelists_video": false,
16
+ "approval_type": 2,
17
+ "audio": "both",
18
+ "auto_recording": "none",
19
+ "enforce_login": false,
20
+ "enforce_login_domains": "",
21
+ "alternative_hosts": "",
22
+ "close_registration": false,
23
+ "show_share_button": true,
24
+ "allow_multiple_devices": true,
25
+ "practice_session": false,
26
+ "hd_video": false,
27
+ "question_answer": true
28
+ }
29
+ }
File without changes
@@ -0,0 +1,20 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_number": 1,
4
+ "page_size": 30,
5
+ "total_records": 1,
6
+ "webinars": [
7
+ {
8
+ "uuid": "someBase64str!ng",
9
+ "id": 123456789,
10
+ "host_id": "test_user_id",
11
+ "topic": "testing123",
12
+ "type": 5,
13
+ "start_time": "2018-09-17T21:55:25Z",
14
+ "duration": 60,
15
+ "timezone": "America/New_York",
16
+ "created_at": "2018-09-17T21:55:25Z",
17
+ "join_url": "https://zoom.us/j/123456789"
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "registrant_id": "string",
3
+ "id": "string",
4
+ "topic": "string",
5
+ "start_time": "2018-10-03T00:10:16.960Z",
6
+ "join_url": "https://zoom.us/j/1234567890"
7
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "page_count": 1,
3
+ "page_size": 1,
4
+ "total_records": 1,
5
+ "next_page_token": "string",
6
+ "registrants": [
7
+ {
8
+ "id": "string",
9
+ "email": "string",
10
+ "first_name": "string",
11
+ "last_name": "string",
12
+ "address": "string",
13
+ "city": "string",
14
+ "country": "string",
15
+ "zip": "string",
16
+ "state": "string",
17
+ "phone": "string",
18
+ "industry": "string",
19
+ "org": "string",
20
+ "job_title": "string",
21
+ "purchasing_time_frame": "Within a month",
22
+ "role_in_purchase_process": "Decision Maker",
23
+ "no_of_employees": "1-20",
24
+ "comments": "string",
25
+ "custom_questions": [
26
+ {
27
+ "title": "string",
28
+ "value": "string"
29
+ }
30
+ ],
31
+ "status": "string",
32
+ "create_time": "2018-10-02T23:59:31.080Z",
33
+ "join_url": "string"
34
+ }
35
+ ]
36
+ }