Skip to content

Commit 84c8161

Browse files
authored
Update README.md
1 parent e0a2996 commit 84c8161

File tree

1 file changed

+61
-1
lines changed

1 file changed

+61
-1
lines changed

README.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,61 @@
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

0 commit comments

Comments
 (0)