-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzoom-config.json
More file actions
119 lines (119 loc) · 3.63 KB
/
Copy pathzoom-config.json
File metadata and controls
119 lines (119 loc) · 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"zoom_api": {
"account_id": "YOUR_ZOOM_ACCOUNT_ID",
"client_id": "YOUR_OAUTH_CLIENT_ID",
"client_secret": "YOUR_OAUTH_CLIENT_SECRET"
},
"output_file": "zoom_meetings_output.csv",
"meetings": [
{
"host_email": "user1@yourorganization.com",
"topic": "Weekly Team Standup",
"agenda": "Weekly sync to discuss progress, blockers, and upcoming tasks",
"start_date": "2026-03-03",
"start_time": "09:00:00",
"duration": 30,
"timezone": "America/New_York",
"recurrence_type": "weekly",
"weekly_days": "2",
"end_date": "2026-12-31",
"repeat_interval": 1,
"enable_registration": true,
"approval_type": 0,
"registration_type": 1,
"host_video": true,
"participant_video": true,
"join_before_host": false,
"mute_upon_entry": true,
"waiting_room": false,
"auto_recording": "none"
},
{
"host_email": "user2@yourorganization.com",
"topic": "Monthly Leadership Meeting",
"agenda": "Monthly meeting to review organizational updates and strategic initiatives",
"start_date": "2026-03-15",
"start_time": "14:00:00",
"duration": 90,
"timezone": "America/Los_Angeles",
"recurrence_type": "monthly",
"monthly_day": 15,
"end_date": "2026-12-31",
"repeat_interval": 1,
"enable_registration": true,
"approval_type": 0,
"registration_type": 1,
"host_video": true,
"participant_video": false,
"join_before_host": false,
"mute_upon_entry": true,
"waiting_room": false,
"password": "SecurePass123",
"auto_recording": "cloud"
},
{
"host_email": "user3@yourorganization.com",
"topic": "Daily Project Sync",
"agenda": "Quick daily sync for active project team members",
"start_date": "2026-03-01",
"start_time": "10:30:00",
"duration": 15,
"timezone": "America/Chicago",
"recurrence_type": "daily",
"repeat_interval": 1,
"occurrences": 60,
"enable_registration": false,
"host_video": true,
"participant_video": true,
"join_before_host": true,
"mute_upon_entry": true,
"waiting_room": false,
"auto_recording": "none"
},
{
"host_email": "user1@yourorganization.com",
"topic": "Bi-Weekly Sprint Planning",
"agenda": "Sprint planning session every two weeks",
"start_date": "2026-03-04",
"start_time": "13:00:00",
"duration": 120,
"timezone": "America/New_York",
"recurrence_type": "weekly",
"weekly_days": "3",
"repeat_interval": 2,
"end_date": "2026-12-31",
"enable_registration": true,
"approval_type": 1,
"registration_type": 2,
"host_video": true,
"participant_video": true,
"join_before_host": false,
"mute_upon_entry": false,
"waiting_room": false,
"auto_recording": "local"
},
{
"host_email": "user2@yourorganization.com",
"topic": "First Monday of Month - All Hands",
"agenda": "Company-wide all hands meeting on the first Monday of each month",
"start_date": "2026-03-02",
"start_time": "11:00:00",
"duration": 60,
"timezone": "UTC",
"recurrence_type": "monthly",
"monthly_day": 2,
"end_date": "2026-12-31",
"enable_registration": true,
"approval_type": 0,
"registration_type": 1,
"host_video": true,
"participant_video": false,
"join_before_host": false,
"mute_upon_entry": true,
"waiting_room": false,
"watermark": true,
"auto_recording": "cloud",
"meeting_authentication": false
}
]
}