Raw Google Slides API call
raw_requestDirectly call any Google Slides API v1 endpoint to handle requests the standard batch_update tool doesn't cover, like fetching page details with custom field masks or posting custom JSON bodies.
Instructions
Escape hatch to call any Google Slides API v1 path directly, for requests even batch_update doesn't cover — e.g. GET "v1/presentations//pages/" with a custom fields mask in the query string, or a POST with a body shaped differently from the typed tools. The Slides API only has GET and POST endpoints; the path is relative to https://slides.googleapis.com and may carry a query string. The Bearer token is added automatically; a path resolving to a foreign origin is rejected. Drive endpoints (comments, export) are NOT reachable here — use manage_comments / export_presentation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body (POST only). | |
| path | Yes | API path relative to https://slides.googleapis.com, e.g. "v1/presentations/<id>:batchUpdate". | |
| method | No | HTTP method (the Slides API uses only these two). Defaults to GET. |