Raw Google People API call
raw_requestCall any Google People API v1 path directly to handle requests the typed tools don't cover, such as contact photos, other contacts, or custom query parameters. Specify method and JSON body for writes.
Instructions
Escape hatch to call any Google People API v1 path directly, for requests the typed tools don't cover — e.g. contact photos (PATCH "v1/people/:updateContactPhoto" with {"photoBytes":""} or DELETE "v1/people/:deleteContactPhoto"), "Other contacts" (GET "v1/otherContacts?readMask=..." — needs the contacts.other.readonly scope on the token), or extra query parameters like sources. The path may carry a query string; repeated parameters are written inline ("v1/people:batchGet?resourceNames=people/a&resourceNames=people/b&personFields=names"). The Bearer token is added automatically; the method defaults to GET. Writes are never retried after ambiguous failures.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body (POST/PUT/PATCH only). | |
| path | Yes | API path relative to https://people.googleapis.com, e.g. "v1/people/c123?personFields=names". | |
| method | No | HTTP method. Defaults to GET. |