Reputation: 73
I need the to get password policy and password reset frequency of the Gsuite account through the gsuite Admin SDK Apis. But, I dont find any api doc regarding this.
https://developers.google.com/admin-sdk/
I need to fetch the password expiration time and policy using Oauth 2.0 google admin Sdk apis.
Upvotes: 1
Views: 301
Reputation: 26836
You can use the Reports API to query various Login Audit Activity Events including Account password change
For this:
userKey
to either all
or a specific user email
applicationName
to login
eventName
to password_edit
startTime
, endTime
or filters
Upvotes: 1