Google Tasks
Google Tasks is a task-list and to-do management service integrated with Google Workspace.
- Base URL:
https://tasks.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
tasks_tasks_list— GET /tasks/v1/lists/{tasklist}/tasks — Returns all tasks in the specified task list.tasks_tasks_get— GET /tasks/v1/lists/{tasklist}/tasks/{task} — Returns the specified task.tasks_tasklists_list— GET /tasks/v1/users/@me/lists — Returns all the authenticated user's task lists.tasks_tasklists_get— GET /tasks/v1/users/@me/lists/{tasklist} — Returns the authenticated user's specified task list.tasks_tasks_clear— POST /tasks/v1/lists/{tasklist}/clear — Clears all completed tasks from the specified task list. The affected tasks willtasks_tasks_insert— POST /tasks/v1/lists/{tasklist}/tasks — Creates a new task on the specified task list.
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: tasks_tasks_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: tasks_tasks_list, tasks_tasks_get, tasks_tasklists_list, tasks_tasklists_get, tasks_tasks_clear, tasks_tasks_insert |
task |
string | no | — | Path parameter task (required by some operations). |
tasklist |
string | no | — | Path parameter tasklist (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |