We use Google Contacts API to get contact entries that are updated after a specific time to keep an updated copy of the contacts on our end.
In Google Contacts API, there is an option to get the contact entries updated after a specific time using "updated-min" query parameter.
GET https://www.google.com/m8/feeds/contacts/default/full?updated-min=2007-03-16T00:00:00
There is no option specified in Google People API for such a case in Google People documentation. Am I missing anything or is this feature not given?
update_time
by fetching all contact entries and then filtering them by theirupdate_time
. This may be the closest thing you might have to work on. – Pharmacist