-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathzoom.yaml
81 lines (81 loc) Β· 2.63 KB
/
zoom.yaml
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
---
endpoints:
- pathTemplate: "/v2/users"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.users[*]['email','phone_number']"
encoding: "JSON"
- !<pseudonymize>
jsonPaths:
- "$.users[*]['id','pmi']"
includeReversible: true
encoding: "URL_SAFE_TOKEN"
- !<redact>
jsonPaths:
- "$.users[*]['display_name','first_name','last_name','pic_url','employee_unique_id']"
- pathTemplate: "/v2/users/{userId}/meetings"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.meetings[*]['host_id','host_email']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.meetings[*]['topic','join_url','start_url','agenda']"
- pathTemplate: "/v2/meetings/{meetingId}"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.['host_id','host_email']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.['topic','settings','agenda','custom_keys']"
- "$.['password','h323_password','pstn_password','encrypted_password','join_url','start_url']"
- pathTemplate: "/v2/past_meetings/{meetingId}/instances"
- pathTemplate: "/v2/past_meetings/{meetingId}"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.['host_id','user_email','host_email']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.['user_name','topic','agenda']"
- pathTemplate: "/v2/past_meetings/{meetingId}/participants"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.participants[*]['id','user_email','pmi']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.participants[*]['name','registrant_id']"
- pathTemplate: "/v2/report/users/{accountId}/meetings"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.meetings[*]['host_id','user_email','host_email']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.meetings[*]['user_name','topic','custom_keys','tracking_fields']"
- pathTemplate: "/v2/report/meetings/{meetingId}"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.['host_id','user_email','host_email']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.['user_name','topic','custom_keys','tracking_fields']"
- pathTemplate: "/v2/report/meetings/{meetingId}/participants"
transforms:
- !<pseudonymize>
jsonPaths:
- "$.participants[*]['id','user_email','user_id','pmi']"
encoding: "JSON"
- !<redact>
jsonPaths:
- "$.participants[*]['name','registrant_id','display_name']"