Raw Google Docs API call
raw_requestCall any Google Docs API v1 endpoint directly when the built-in tools lack support, enabling batch updates, style changes, headers, footers, and named ranges.
Instructions
Escape hatch to call any Google Docs API v1 path directly, for requests the typed tools don't cover — e.g. a batchUpdate with mergeTableCells, updateTableCellStyle, pinTableHeaderRows, updateSectionStyle, updateDocumentStyle, createHeader/createFooter, createFootnote, named ranges, or several requests at once with writeControl.requiredRevisionId: path "v1/documents/:batchUpdate", method POST, body {"requests":[...]}. The path may carry a query string. The Bearer token is added automatically; the method defaults to GET. Only docs.googleapis.com paths are reachable — Drive endpoints are not exposed here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body (POST only). | |
| path | Yes | API path relative to https://docs.googleapis.com, e.g. "v1/documents/<documentId>:batchUpdate". | |
| method | No | HTTP method (the Docs API uses only these two). Defaults to GET. |