File tree Expand file tree Collapse file tree 1 file changed +61
-1
lines changed Expand file tree Collapse file tree 1 file changed +61
-1
lines changed Original file line number Diff line number Diff line change 1
- # NIM-Conn-System-Rest-Google-Workspace
1
+ # NIM-Conn-System-REST-Google-Workspace
2
+
3
+
4
+ This is a native rest connector. This repo is for additional tools specific to Google Workspace
5
+
6
+ ## Table of Contents
7
+ * [ Getting Started] ( #getting-started )
8
+ * [ Automated Deletion] ( #automated-deletion )
9
+
10
+ ## Getting Started
11
+ * Create user account
12
+ * Enable user account
13
+ * Disable user account
14
+ * Delete user account
15
+ * Group Membership (Add / Remove)
16
+
17
+ ## Automated Deletion
18
+
19
+ ### Custom Schema Fields
20
+ ![ image] ( https://user-images.githubusercontent.com/24281600/135354425-b5cd03e1-8fb9-43a8-9542-5c8d801c827f.png )
21
+
22
+
23
+ ### Example Filter
24
+ ![ image] ( https://user-images.githubusercontent.com/24281600/135354511-235f5dea-0b52-4706-865e-25c691700292.png )
25
+
26
+
27
+ ### Populate Automated Deletion Date
28
+ TBD
29
+
30
+ ### Evaluate Automated Deletion Date
31
+ This script column is used to determine if Automated Delete Date is in the future. If in the future, then the result is true.
32
+
33
+
34
+ ```
35
+ let status = true;
36
+
37
+ try
38
+ {
39
+ let deleteDate = new Date(users['customSchemas_Tools4ever_DeleteDate']);
40
+ let todayDate = new Date();
41
+
42
+ if(todayDate > deleteDate)
43
+ {
44
+ status = false;
45
+ }
46
+ else
47
+ {
48
+ }
49
+
50
+ }
51
+ catch(e)
52
+ {
53
+ }
54
+
55
+
56
+ return status;
57
+ ```
58
+
59
+
60
+ # NIM Docs
61
+ The official NIM documentation can be found at: https://docs.nimsuite.com
You can’t perform that action at this time.
0 commit comments