"GoogleContacts" (Service Connection)
Connect to your Google Contacts data using the Wolfram Language.
Connecting & Authenticating
ServiceConnect["GoogleContacts"] creates a connection to the Google Contacts API. If a previously saved connection can be found, it will be used; otherwise, a new authentication request will be launched.
Requests
ServiceExecute["GoogleContacts","request",params] sends a request to the Google Contacts API, using parameters params. The following gives possible requests.
List Contacts
"ContactsList" — a List of contacts and associated information
"ContactsDataset" — a Dataset of contacts and associated information
MaxItems | 100 | number of elements to return | |
"StartIndex" | 1 | start index | |
"UpdatedDate" | None | lower bound on entry update dates | |
"Query" | None | query string | |
"SortBy" | None | sorting order: "LastModified" | |
"ShowDeleted" | False | whether to include deleted contacts | |
"GroupID" | None | group ID |
Detailed Contact Information
"ContactInformation" — detailed information about a specific contact
"ContactID" | (required) | contact ID |
Contact Photos
"ContactPhoto" — photo associated with a specific contact
"ContactID" | (required) | contact ID |
Group Lists
"GroupList" — a List of contact groups
"GroupDataset" — a Dataset of contact groups
MaxItems | 100 | number of elements to return | |
"StartIndex" | 1 | start index | |
"UpdatedDate" | None | lower bound on entry update dates | |
"Query" | None | query string | |
"SortBy" | None | sorting order: "LastModified" | |
"ShowDeleted" | False | whether to include deleted groups |