Skip to main content
Server path: /google-task | Type: Application | PCID required: Yes

Tools

ToolDescription
google-task_clear_tasksClears 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.
google-task_delete_taskDeletes the specified task from the task list.
google-task_delete_tasklistDeletes the authenticated user’s specified task list.
google-task_get_taskReturns the specified task.
google-task_get_tasklistReturns the authenticated user’s specified task list.
google-task_insert_taskCreates a new task on the specified task list.
google-task_insert_tasklistCreates a new task list and adds it to the authenticated user’s task lists.
google-task_list_tasklistsReturns all the authenticated user’s task lists.
google-task_list_tasksReturns all tasks in the specified task list.
google-task_move_taskMoves the specified task to another position in the task 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.
google-task_patch_taskUpdates the specified task. This method supports patch semantics.
google-task_patch_tasklistUpdates the authenticated user’s specified task list. This method supports patch semantics.
google-task_update_taskUpdates the specified task.
google-task_update_tasklistUpdates the authenticated user’s specified task list.

google-task_clear_tasks

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. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.

google-task_delete_task

Deletes the specified task from the task list. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
taskstringYesTask identifier.

google-task_delete_tasklist

Deletes the authenticated user’s specified task list. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.

google-task_get_task

Returns the specified task. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
taskstringYesTask identifier.

google-task_get_tasklist

Returns the authenticated user’s specified task list. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.

google-task_insert_task

Creates a new task on the specified task list. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
parentstringNoParent task identifier. If the task is created at the top level, this parameter is omitted. Optional.
previousstringNoPrevious sibling task identifier. If the task is created at the first position among its siblings, this parameter is omitted. Optional.
completedstringNoCompletion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
deletedbooleanNoFlag indicating whether the task has been deleted. The default is False.
duestringNoDue date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn’t possible to read or write the time that a task is due via the API.
etagstringNoETag of the resource.
hiddenbooleanNoFlag indicating whether the task is hidden. This is the case if the task had been marked completed when the task list was last cleared. The default is False. This field is read-only.
idstringNoTask identifier.
kindstringNoType of the resource. This is always “tasks#task”.
linksobject[]NoCollection of links. This collection is read-only.
notesstringNoNotes describing the task. Optional.
positionstringNoString indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task’s corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). This field is read-only. Use the “move” method to move the task to another position.
selfLinkstringNoURL pointing to this task. Used to retrieve, update, or delete this task.
statusstringNoStatus of the task. This is either “needsAction” or “completed”.
titlestringNoTitle of the task.
updatedstringNoLast modification time of the task (as a RFC 3339 timestamp).

google-task_insert_tasklist

Creates a new task list and adds it to the authenticated user’s task lists. Parameters:
ParameterTypeRequiredDefaultDescription
etagstringNoETag of the resource.
idstringNoTask list identifier.
kindstringNoType of the resource. This is always “tasks#taskList”.
selfLinkstringNoURL pointing to this task list. Used to retrieve, update, or delete this task list.
titlestringNoTitle of the task list.
updatedstringNoLast modification time of the task list (as a RFC 3339 timestamp).

google-task_list_tasklists

Returns all the authenticated user’s task lists. Parameters:
ParameterTypeRequiredDefaultDescription
maxResultsintegerNoMaximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
pageTokenstringNoToken specifying the result page to return. Optional.

google-task_list_tasks

Returns all tasks in the specified task list. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
completedMaxstringNoUpper bound for a task’s completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
completedMinstringNoLower bound for a task’s completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
dueMaxstringNoUpper bound for a task’s due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
dueMinstringNoLower bound for a task’s due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
maxResultsintegerNoMaximum number of tasks returned on one page. Optional. The default is 20 (max allowed: 100).
pageTokenstringNoToken specifying the result page to return. Optional.
showCompletedbooleanNoFlag indicating whether completed tasks are returned in the result. Optional. The default is True. Note that showHidden must also be True to show tasks completed in first party clients, such as the web UI and Google’s mobile apps.
showDeletedbooleanNoFlag indicating whether deleted tasks are returned in the result. Optional. The default is False.
showHiddenbooleanNoFlag indicating whether hidden tasks are returned in the result. Optional. The default is False.
updatedMinstringNoLower bound for a task’s last modification time (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by last modification time.

google-task_move_task

Moves the specified task to another position in the task 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. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
taskstringYesTask identifier.
parentstringNoNew parent task identifier. If the task is moved to the top level, this parameter is omitted. Optional.
previousstringNoNew previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.

google-task_patch_task

Updates the specified task. This method supports patch semantics. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
taskstringYesTask identifier.
completedstringNoCompletion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
deletedbooleanNoFlag indicating whether the task has been deleted. The default is False.
duestringNoDue date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn’t possible to read or write the time that a task is due via the API.
etagstringNoETag of the resource.
hiddenbooleanNoFlag indicating whether the task is hidden. This is the case if the task had been marked completed when the task list was last cleared. The default is False. This field is read-only.
idstringNoTask identifier.
kindstringNoType of the resource. This is always “tasks#task”.
linksobject[]NoCollection of links. This collection is read-only.
notesstringNoNotes describing the task. Optional.
parentstringNoParent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the “move” method to move the task under a different parent or to the top level.
positionstringNoString indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task’s corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). This field is read-only. Use the “move” method to move the task to another position.
selfLinkstringNoURL pointing to this task. Used to retrieve, update, or delete this task.
statusstringNoStatus of the task. This is either “needsAction” or “completed”.
titlestringNoTitle of the task.
updatedstringNoLast modification time of the task (as a RFC 3339 timestamp).

google-task_patch_tasklist

Updates the authenticated user’s specified task list. This method supports patch semantics. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
etagstringNoETag of the resource.
idstringNoTask list identifier.
kindstringNoType of the resource. This is always “tasks#taskList”.
selfLinkstringNoURL pointing to this task list. Used to retrieve, update, or delete this task list.
titlestringNoTitle of the task list.
updatedstringNoLast modification time of the task list (as a RFC 3339 timestamp).

google-task_update_task

Updates the specified task. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
taskstringYesTask identifier.
completedstringNoCompletion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.
deletedbooleanNoFlag indicating whether the task has been deleted. The default is False.
duestringNoDue date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn’t possible to read or write the time that a task is due via the API.
etagstringNoETag of the resource.
hiddenbooleanNoFlag indicating whether the task is hidden. This is the case if the task had been marked completed when the task list was last cleared. The default is False. This field is read-only.
idstringNoTask identifier.
kindstringNoType of the resource. This is always “tasks#task”.
linksobject[]NoCollection of links. This collection is read-only.
notesstringNoNotes describing the task. Optional.
parentstringNoParent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the “move” method to move the task under a different parent or to the top level.
positionstringNoString indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task’s corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). This field is read-only. Use the “move” method to move the task to another position.
selfLinkstringNoURL pointing to this task. Used to retrieve, update, or delete this task.
statusstringNoStatus of the task. This is either “needsAction” or “completed”.
titlestringNoTitle of the task.
updatedstringNoLast modification time of the task (as a RFC 3339 timestamp).

google-task_update_tasklist

Updates the authenticated user’s specified task list. Parameters:
ParameterTypeRequiredDefaultDescription
taskliststringYesTask list identifier.
etagstringNoETag of the resource.
idstringNoTask list identifier.
kindstringNoType of the resource. This is always “tasks#taskList”.
selfLinkstringNoURL pointing to this task list. Used to retrieve, update, or delete this task list.
titlestringNoTitle of the task list.
updatedstringNoLast modification time of the task list (as a RFC 3339 timestamp).