Google Tasks
googletasksGoogle Tasks provides a simple to-do list and task management system integrated into Gmail and Google Calendar for quick and easy tracking
Acciones disponibles (14)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Clear tasksGOOGLETASKS_CLEAR_TASKSAcciónPermanently clears all completed tasks from a specified google tasks list; this action is destructive and idempotent.
GOOGLETASKS_CLEAR_TASKSAcciónPermanently clears all completed tasks from a specified google tasks list; this action is destructive and idempotent.
Parámetros de entrada
taskliststringObligatorioThe identifier of the task list from which to clear completed tasks. Use '@default' for the default task list.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create a task listGOOGLETASKS_CREATE_TASK_LISTAcciónCreates a new task list with the specified title.
GOOGLETASKS_CREATE_TASK_LISTAcciónCreates a new task list with the specified title.
Parámetros de entrada
tasklist_titlestringObligatorioTitle for the new task list. The maximum allowed length is 1024 characters.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete taskGOOGLETASKS_DELETE_TASKAcciónDeletes a specified task from a given task list in google tasks.
GOOGLETASKS_DELETE_TASKAcciónDeletes a specified task from a given task list in google tasks.
Parámetros de entrada
task_idstringObligatorioThe unique identifier of the Google Task to be deleted.
tasklist_idstringObligatorioThe unique identifier of the Google Task list from which the task will be deleted.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete task listGOOGLETASKS_DELETE_TASK_LISTAcciónPermanently deletes an existing google task list, identified by `tasklist id`, along with all its tasks; this operation is irreversible.
GOOGLETASKS_DELETE_TASK_LISTAcciónPermanently deletes an existing google task list, identified by `tasklist id`, along with all its tasks; this operation is irreversible.
Parámetros de entrada
tasklist_idstringUnique identifier of the Google Task list to be deleted.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get TaskGOOGLETASKS_GET_TASKAcciónUse to retrieve a specific google task if its `task id` and parent `tasklist id` are known.
GOOGLETASKS_GET_TASKAcciónUse to retrieve a specific google task if its `task id` and parent `tasklist id` are known.
Parámetros de entrada
task_idstringObligatorioUnique identifier of the Google Task to retrieve.
tasklist_idstringObligatorioUnique identifier of the Google Tasks list containing the task.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get task listGOOGLETASKS_GET_TASK_LISTAcciónRetrieves a specific task list from the user's google tasks if the `tasklist id` exists for the authenticated user.
GOOGLETASKS_GET_TASK_LISTAcciónRetrieves a specific task list from the user's google tasks if the `tasklist id` exists for the authenticated user.
Parámetros de entrada
tasklist_idstringObligatorioThe unique identifier of the task list to retrieve, assigned by Google Tasks when the list is created.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Insert TaskGOOGLETASKS_INSERT_TASKAcciónCreates a new task in a given `tasklist id`, optionally as a subtask of an existing `task parent` or positioned after an existing `task previous` sibling, where both `task parent` and `task previous` must belong to the same `tasklist id` if specified.
GOOGLETASKS_INSERT_TASKAcciónCreates a new task in a given `tasklist id`, optionally as a subtask of an existing `task parent` or positioned after an existing `task previous` sibling, where both `task parent` and `task previous` must belong to the same `tasklist id` if specified.
Parámetros de entrada
idstringTask identifier.
duestringDue date of the task. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
etagstringETag of the resource.
notesstringNotes describing the task. Optional. Maximum length allowed: 8192 characters.
titlestringObligatorioTitle of the task. Maximum length allowed: 1024 characters.
hiddenbooleanFlag indicating whether the task is hidden.
statusstringObligatorioenumStatus of the task. This is either 'needsAction' or 'completed'.
needsActioncompleteddeletedbooleanFlag indicating whether the task has been deleted.
completedstringCompletion date of the task. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
task_parentstringIdentifier of an existing task to serve as parent; if provided, creates a subtask, otherwise a top-level task in the specified list.
tasklist_idstringObligatorioIdentifier for the Google Task list where the new task will be created.
task_previousstringIdentifier of an existing task after which the new task will be placed, at the same hierarchical level (as a sibling).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List task listsGOOGLETASKS_LIST_TASK_LISTSAcciónFetches the authenticated user's task lists from google tasks; results may be paginated.
GOOGLETASKS_LIST_TASK_LISTSAcciónFetches the authenticated user's task lists from google tasks; results may be paginated.
Parámetros de entrada
pageTokenstringToken for the page of results to return; omit for the first page, use `nextPageToken` from a previous response for subsequent pages.
maxResultsintegerMaximum number of task lists to return per page.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List TasksGOOGLETASKS_LIST_TASKSAcciónRetrieves tasks from a google tasks list; all date/time strings must be rfc3339 utc, and `showcompleted` must be true if `completedmin` or `completedmax` are specified.
GOOGLETASKS_LIST_TASKSAcciónRetrieves tasks from a google tasks list; all date/time strings must be rfc3339 utc, and `showcompleted` must be true if `completedmin` or `completedmax` are specified.
Parámetros de entrada
dueMaxstringExclude tasks due after this date. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
dueMinstringExclude tasks due before this date. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
pageTokenstringToken from a previous list operation for fetching a specific page; if omitted, retrieves the first page.
maxResultsintegerMaximum number of tasks to return. API default: 20, maximum: 100.
showHiddenbooleanInclude hidden tasks. Defaults to false.
updatedMinstringLower bound for task's last modification time (for syncing). Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
showDeletedbooleanInclude deleted tasks. Defaults to false.
tasklist_idstringObligatorioIdentifier of the task list. Use '@default' for the user's primary task list.
completedMaxstringExclude tasks completed after this date. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
completedMinstringExclude tasks completed before this date. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
showCompletedbooleanInclude completed tasks. Defaults to true. (See action docstring for interaction with `completedMin`/`Max`).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Move TaskGOOGLETASKS_MOVE_TASKAcciónMoves the specified task to another position in the destination task list.
GOOGLETASKS_MOVE_TASKAcciónMoves the specified task to another position in the destination task list.
Parámetros de entrada
taskstringObligatorioTask identifier.
parentstringNew parent task identifier. If not provided, the task is moved to the top level.
previousstringNew previous sibling task identifier. If not provided, the task is moved to the first position among its siblings.
taskliststringObligatorioTask list identifier.
destinationTaskliststringDestination task list identifier. If set, the task is moved to this list; otherwise, it remains in its current list.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Patch TaskGOOGLETASKS_PATCH_TASKAcciónPartially updates an existing task (identified by `task id`) within a specific google task list (identified by `tasklist id`), modifying only the provided attributes from `taskinput` (e.g., `title`, `notes`, `due` date, `status`) and requiring both the task and list to exist.
GOOGLETASKS_PATCH_TASKAcciónPartially updates an existing task (identified by `task id`) within a specific google task list (identified by `tasklist id`), modifying only the provided attributes from `taskinput` (e.g., `title`, `notes`, `due` date, `status`) and requiring both the task and list to exist.
Parámetros de entrada
idstringTask identifier.
duestringDue date of the task. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
etagstringETag of the resource.
notesstringNotes describing the task. Optional. Maximum length allowed: 8192 characters.
titlestringObligatorioTitle of the task. Maximum length allowed: 1024 characters.
hiddenbooleanFlag indicating whether the task is hidden.
statusstringObligatorioenumStatus of the task. This is either 'needsAction' or 'completed'.
needsActioncompleteddeletedbooleanFlag indicating whether the task has been deleted.
task_idstringObligatorioIdentifier of the Google Task to be updated within the specified task list.
completedstringCompletion date of the task. Some examples of expected datetime format: UTC-5:30, 6:50 PM ->If date is not mentioned, and seeming that the start date is in next 24 hours. UTC+1, 11:59 PM, 31 Dec ->If the meeting start date is in next 1 year (this is most possible case) UTC-3:45, 7:15 AM, 22 Aug 2020 ->If the meeting is to be set after at a spefic date, mentioned with year. 11:15 PM, 12 May 2019 ->In case no UTC offset to be mentioned, skip the UTC part altogether. 2023-03-01T00:00:00Z ->Standard ISO-8601 format
tasklist_idstringObligatorioIdentifier of the Google Task list that contains the task to be updated.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Patch task listGOOGLETASKS_PATCH_TASK_LISTAcciónUpdates the title of an existing google tasks task list.
GOOGLETASKS_PATCH_TASK_LISTAcciónUpdates the title of an existing google tasks task list.
Parámetros de entrada
tasklist_idstringObligatorioThe unique identifier of the task list to be updated.
updated_titlestringObligatorioThe new title for the task list.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update TaskGOOGLETASKS_UPDATE_TASKAcciónUpdates the specified task.
GOOGLETASKS_UPDATE_TASKAcciónUpdates the specified task.
Parámetros de entrada
duestringDue date of the task (RFC 3339 timestamp).
taskstringObligatorioTask identifier.
notesstringNotes describing the task.
titlestringTitle of the task.
statusstringStatus of the task ("needsAction" or "completed").
taskliststringObligatorioTask list identifier.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update Task ListGOOGLETASKS_UPDATE_TASK_LISTAcciónUpdates the authenticated user's specified task list.
GOOGLETASKS_UPDATE_TASK_LISTAcciónUpdates the authenticated user's specified task list.
Parámetros de entrada
titlestringObligatorioTitle of the task list. Maximum length allowed: 1024 characters.
tasklist_idstringObligatorioTask list identifier.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Triggers (5)
Los triggers son eventos externos que pueden iniciar un flujo en tus agentes (ej: nuevo email, mensaje recibido, registro creado).
New Task CreatedGOOGLETASKS_NEW_TASK_CREATED_TRIGGERTriggerTriggers when a new task is created in a Google Tasks list.
Uses timestamp filtering (updatedMin) to efficiently detect new tasks.
GOOGLETASKS_NEW_TASK_CREATED_TRIGGERTriggerTriggers when a new task is created in a Google Tasks list. Uses timestamp filtering (updatedMin) to efficiently detect new tasks.
Configuración
intervalnumberPeriodic Interval to Check for Updates & Send a Trigger in Minutes
max_resultsintegerMaximum number of tasks to check in each poll (1-100)
tasklist_idstringIdentifier of the task list to monitor. Use '@default' for the primary task list or provide a specific task list ID from list_task_lists action.
Payload del evento
event_typestringType of event that occurred
taskobjectObligatorioThe newly created task
Instrucciones
**Instructions for Setting Up the Trigger:** - This trigger monitors a specific Google Tasks list for newly created tasks. - Specify the task list to monitor using tasklist_id (default: '@default' for primary list). - The trigger will detect tasks created after the trigger is set up. - Use max_results to control how many tasks to check in each poll (default: 100). - To get task list IDs, use the List Task Lists action. **How it works:** - Uses timestamp filtering (updatedMin parameter) to only fetch tasks updated since last poll - Maintains a bounded list of seen task IDs for deduplication - First run returns empty to establish baseline
New Task List CreatedGOOGLETASKS_NEW_TASK_LIST_CREATED_TRIGGERTriggerTriggers when a new Google Tasks task list is created.
This trigger monitors Google Tasks and fires when new task lists are detected.
GOOGLETASKS_NEW_TASK_LIST_CREATED_TRIGGERTriggerTriggers when a new Google Tasks task list is created. This trigger monitors Google Tasks and fires when new task lists are detected.
Configuración
intervalnumberPeriodic Interval to Check for Updates & Send a Trigger in Minutes
max_resultsintegerMaximum number of task lists to check in each poll (1-100)
Payload del evento
event_typestringType of event that occurred
task_listobjectObligatorioThe newly created task list
Instrucciones
**Instructions for Setting Up the Trigger:** - This trigger monitors Google Tasks for newly created task lists. - The trigger will detect task lists created after the trigger is set up. - Use max_results to control how many task lists to check in each poll (default: 20). - The trigger compares task list IDs against a known list to detect new creations.
Task Details ChangedGOOGLETASKS_TASK_DETAILS_CHANGED_TRIGGERTriggerTriggers when a specific task's details change.
This trigger monitors a single Google Task and fires when any of its details
(title, notes, status, due date, completion, position) are modified.
GOOGLETASKS_TASK_DETAILS_CHANGED_TRIGGERTriggerTriggers when a specific task's details change. This trigger monitors a single Google Task and fires when any of its details (title, notes, status, due date, completion, position) are modified.
Configuración
intervalnumberPeriodic Interval to Check for Updates & Send a Trigger in Minutes
task_idstringObligatorioThe ID of the specific task to monitor for changes
tasklist_idstringObligatorioThe ID of the task list containing the task to monitor
Payload del evento
changed_fieldsstring[]ObligatorioList of field names that changed
event_typestringType of event that occurred
previous_taskobjectThe previous task snapshot (None on first poll)
taskobjectObligatorioThe current task with all details
Instrucciones
**Instructions for Setting Up the Trigger:** - This trigger monitors a specific Google Task for any changes to its details. - You must provide both the `tasklist_id` and `task_id` of the task to monitor. - The trigger will detect changes to: title, notes, status, due date, completion date, and position. - On the first poll, no changes will be emitted (establishing baseline). - Subsequent polls will compare the current state with the previous snapshot. - The trigger emits the changed fields along with both current and previous task data. **How to get tasklist_id and task_id:** - Use the "List Task Lists" action to get available task lists and their IDs - Use the "List Tasks" action with a tasklist_id to get tasks and their IDs
Task List ChangedGOOGLETASKS_TASK_LIST_CHANGED_TRIGGERTriggerTriggers when a task list changes (title or content updates).
This trigger monitors a specific Google Tasks list and fires when changes are detected.
GOOGLETASKS_TASK_LIST_CHANGED_TRIGGERTriggerTriggers when a task list changes (title or content updates). This trigger monitors a specific Google Tasks list and fires when changes are detected.
Configuración
intervalnumberPeriodic Interval to Check for Updates & Send a Trigger in Minutes
tasklist_idstringObligatorioThe unique identifier of the task list to monitor for changes. Use '@default' for the default task list.
Payload del evento
changed_fieldsstring[]List of fields that changed (e.g., 'title', 'updated')
event_typestringType of event that occurred
task_listobjectObligatorioThe task list with changed state
Instrucciones
**Instructions for Setting Up the Trigger:** - This trigger monitors a specific Google Tasks list for changes. - Provide the tasklist_id to monitor. Use '@default' for your default task list. - The trigger detects changes in task list metadata (title, update timestamp). - On first run, the trigger will store the initial state but won't fire. - Subsequent runs will compare the current state to the previous snapshot.
Task UpdatedGOOGLETASKS_TASK_UPDATED_TRIGGERTriggerTriggers when an existing task is updated in a Google Tasks list.
This trigger monitors a specific task list and fires when tasks are modified.
GOOGLETASKS_TASK_UPDATED_TRIGGERTriggerTriggers when an existing task is updated in a Google Tasks list. This trigger monitors a specific task list and fires when tasks are modified.
Configuración
intervalnumberPeriodic Interval to Check for Updates & Send a Trigger in Minutes
max_resultsintegerMaximum number of tasks to check in each poll (1-100)
show_completedbooleanInclude completed tasks in the monitoring. Defaults to true.
show_deletedbooleanInclude deleted tasks in the monitoring. Defaults to false.
tasklist_idstringIdentifier of the task list to monitor. Use '@default' for the primary task list, or provide a specific task list ID from list_task_lists action.
Payload del evento
event_typestringType of event that occurred
taskobjectObligatorioThe updated task
Instrucciones
**Instructions for Setting Up the Trigger:** - This trigger monitors a Google Tasks list for updated tasks. - Specify the task list to monitor using tasklist_id (use '@default' for the primary list). - The trigger will detect tasks that have been modified after the trigger is set up. - Use max_results to control how many tasks to check in each poll (default: 20). - Set show_completed to include or exclude completed tasks from monitoring. - The trigger uses timestamp-based filtering to efficiently detect only recently updated tasks.