Raw Google Tasks API call
raw_requestCall any Google Tasks API v1 path directly for requests typed tools don't cover, such as full-resource PUTs or custom query combinations. Auth is added automatically.
Instructions
Escape hatch to call any Google Tasks API v1 path directly, for requests the typed tools don't cover — e.g. a full-resource PUT ("tasks/v1/lists//tasks/", method PUT, body with the complete task), or a query combination the typed filters don't expose. The path is relative to https://tasks.googleapis.com and may carry a query string (e.g. "tasks/v1/lists//tasks?showDeleted=true"). The Bearer token is added automatically; the method defaults to GET. PATCH/PUT/POST/DELETE hit live data with no confirmation — prefer the typed tools when one fits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body — sent for POST/PATCH/PUT/DELETE, ignored for GET. | |
| path | Yes | API path relative to https://tasks.googleapis.com, e.g. "tasks/v1/users/@me/lists". | |
| method | No | HTTP method. Defaults to GET. |