Hello Team,
I want to write a driver policy query which is fetch users, only whose creation timestamp is grater than 60 days.
kindly guide me.
Thanks ,
Arunava
Cybersecurity
DevOps Cloud
IT Operations Cloud
Hello Team,
I want to write a driver policy query which is fetch users, only whose creation timestamp is grater than 60 days.
kindly guide me.
Thanks ,
Arunava
Hi Arunava
In this specific case, I recommend to use LDAP query to get this info.
You can use logic from Lothar's Password Expiration Notification driver and "adjust" LDAP query for your needs
Link to Lothar's public website: https://brummelhook.com/en/dirxml.html
Public repo: http://www.brummelhook.com/download/idm/packages/
Lothar: Thank you for your great work!
TIP: in the LDAP search filter the format for createTimestamp is Zulu time format.
eg:
(&
(createTimestamp>=20241010000000Z) << Update this as per your requirements >>
(createTimestamp<=20241011000000Z) << Update this as per your requirements >>
)