0

We are looking to develop a users directory and it should create new record whenever a new Google Apps account is created. Is there any way to listen for these changes? I was thinking to go for polling via https://developers.google.com/admin-sdk/directory/v1/guides/manage-users#get_all_users but it is not the best way.

Mitul Makadia
  • 398
  • 6
  • 24

1 Answers1

1

Account activity alerts notify admins of changes to the domain. Alerts can be sent when new user accounts are created. Alerts can be checked in the Control Panel, admin email or via the directory.notifications API calls.

Update: thinking about this a little more, it probably makes more sense to use the Admin SDK Reports API for this. With the Admin Activity API call, you can even limit returned results to a specific event like user creation.

Jay Lee
  • 13,415
  • 3
  • 28
  • 59