0

I need to synchronize the users of a domain with a third party database. Using the method users.list I can query for the complete list of users. With the comlete list I can identify created users and deleted users. I don't find any way identify updated users.

Is there a way to identify updated users?

1 Answers1

0

Use Users.watch. It lets you know of any changes made to users. When changes are made you can update your database.

Andy
  • 2,374
  • 3
  • 17
  • 20
  • It seems that the **watch** method is intended only for [push-notifications](https://developers.google.com/admin-sdk/directory/v1/guides/push), or not? I can not use push-notifications because my server is not public, did you know an alternative? – Vincenzo Cappello Mar 20 '15 at 08:17