Google Tasks
Catalog 暂无描述。
认证方式
| 方式 | 底层类型 | 状态 | 说明 |
|---|---|---|---|
| OAuth 2.0 | oauth2 | available | — |
调用示例
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "GOOGLE_TASKS_TASKLISTS_DELETE", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("GOOGLE_TASKS_TASKLISTS_DELETE", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute GOOGLE_TASKS_TASKLISTS_DELETE --data '{ }'Tool 目录
可用 Tools
14 个可调用操作
Tasks Tasklists DeleteGOOGLE_TASKS_TASKLISTS_DELETEDeletes the authenticated user's specified task list. If the list contains assigned tasks, both the assigned tasks and the original tasks in the assignment surface (Docs, Chat Spaces) are deleted.需要连接1 scope
Deletes the authenticated user's specified task list. If the list contains assigned tasks, both the assigned tasks and the original tasks in the assignment surface (Docs, Chat Spaces) are deleted.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasklists GetGOOGLE_TASKS_TASKLISTS_GETReturns the authenticated user's specified task list.需要连接2 scopes
Returns the authenticated user's specified task list.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/taskshttps://www.googleapis.com/auth/tasks.readonlyTags
Tasks Tasklists InsertGOOGLE_TASKS_TASKLISTS_INSERTCreates a new task list and adds it to the authenticated user's task lists. A user can have up to 2000 lists at a time.需要连接1 scope
Creates a new task list and adds it to the authenticated user's task lists. A user can have up to 2000 lists at a time.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasklists ListGOOGLE_TASKS_TASKLISTS_LISTReturns all the authenticated user's task lists. A user can have up to 2000 lists at a time.需要连接2 scopes
Returns all the authenticated user's task lists. A user can have up to 2000 lists at a time.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/taskshttps://www.googleapis.com/auth/tasks.readonlyTags
Tasks Tasklists PatchGOOGLE_TASKS_TASKLISTS_PATCHUpdates the authenticated user's specified task list. This method supports patch semantics.需要连接1 scope
Updates the authenticated user's specified task list. This method supports patch semantics.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasklists UpdateGOOGLE_TASKS_TASKLISTS_UPDATEUpdates the authenticated user's specified task list.需要连接1 scope
Updates the authenticated user's specified task list.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasks ClearGOOGLE_TASKS_TASKS_CLEARClears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.需要连接1 scope
Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasks DeleteGOOGLE_TASKS_TASKS_DELETEDeletes the specified task from the task list. If the task is assigned, both the assigned task and the original task (in Docs, Chat Spaces) are deleted. To delete the assigned task only, navigate to the assignment surface and unassign the task from there.需要连接1 scope
Deletes the specified task from the task list. If the task is assigned, both the assigned task and the original task (in Docs, Chat Spaces) are deleted. To delete the assigned task only, navigate to the assignment surface and unassign the task from there.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasks GetGOOGLE_TASKS_TASKS_GETReturns the specified task.需要连接2 scopes
Returns the specified task.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/taskshttps://www.googleapis.com/auth/tasks.readonlyTags
Tasks Tasks InsertGOOGLE_TASKS_TASKS_INSERTCreates a new task on the specified task list. Tasks assigned from Docs or Chat Spaces cannot be inserted from Tasks Public API; they can only be created by assigning them from Docs or Chat Spaces. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.需要连接1 scope
Creates a new task on the specified task list. Tasks assigned from Docs or Chat Spaces cannot be inserted from Tasks Public API; they can only be created by assigning them from Docs or Chat Spaces. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasks ListGOOGLE_TASKS_TASKS_LISTReturns all tasks in the specified task list. Doesn't return assigned tasks by default (from Docs, Chat Spaces). A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.需要连接2 scopes
Returns all tasks in the specified task list. Doesn't return assigned tasks by default (from Docs, Chat Spaces). A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/taskshttps://www.googleapis.com/auth/tasks.readonlyTags
Tasks Tasks MoveGOOGLE_TASKS_TASKS_MOVEMoves the specified task to another position in the destination task list. If the destination list is not specified, the task is moved within its current list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks. A user can have up to 2,000 subtasks per task.需要连接1 scope
Moves the specified task to another position in the destination task list. If the destination list is not specified, the task is moved within its current list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks. A user can have up to 2,000 subtasks per task.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasks PatchGOOGLE_TASKS_TASKS_PATCHUpdates the specified task. This method supports patch semantics.需要连接1 scope
Updates the specified task. This method supports patch semantics.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags
Tasks Tasks UpdateGOOGLE_TASKS_TASKS_UPDATEUpdates the specified task.需要连接1 scope
Updates the specified task.
认证
需要 Connected AccountScopes
https://www.googleapis.com/auth/tasksTags