Googleapis People
Google People API is a Google API for accessing and managing Google account profile, contact, and people-related data.
- Base URL:
https://people.googleapis.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
people_contactgroups_list— GET /v1/contactGroups — List all contact groups owned by the authenticated user. Members of the contactpeople_contactgroups_batchget— GET /v1/contactGroups:batchGet — Get a list of contact groups owned by the authenticated user by specifying a lispeople_othercontacts_list— GET /v1/otherContacts — List all "Other contacts", that is contacts that are not in a contact group. "Otpeople_othercontacts_search— GET /v1/otherContacts:search — Provides a list of contacts in the authenticated user's other contacts that matcpeople_people_getbatchget— GET /v1/people:batchGet — Provides information about a list of specific people by specifying a list of reqpeople_people_listdirectorypeople— GET /v1/people:listDirectoryPeople — Provides a list of domain profiles and domain contacts in the authenticated user
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: people_contactgroups_list
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: people_contactgroups_list, people_contactgroups_batchget, people_othercontacts_list, people_othercontacts_search, people_people_getbatchget, people_people_listdirectorypeople |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |