Google Tasks API

The Google Tasks API lets you manage your tasks and task lists.

Service: tasks.googleapis.com

To call this service, we recommend that you use the Google-provided client libraries. If your application needs to use your own libraries to call this service, use the following information when you make the API requests.

Discovery document

A Discovery Document is a machine-readable specification for describing and consuming REST APIs. It is used to build client libraries, IDE plugins, and other tools that interact with Google APIs. One service may provide multiple discovery documents. This service provides the following discovery document:

Service endpoint

A service endpoint is a base URL that specifies the network address of an API service. One service might have multiple service endpoints. This service has the following service endpoint and all URIs below are relative to this service endpoint:

  • https://tasks.googleapis.com

REST Resource: tasklists

Methods
deleteDELETE /tasks/v1/users/@me/lists/{tasklist}
Deletes the authenticated user's specified task list.
getGET /tasks/v1/users/@me/lists/{tasklist}
Returns the authenticated user's specified task list.
insertPOST /tasks/v1/users/@me/lists
Creates a new task list and adds it to the authenticated user's task lists.
listGET /tasks/v1/users/@me/lists
Returns all the authenticated user's task lists.
/tasks/v1/users/@me/lists/{tasklist}
Updates the authenticated user's specified task list.
updatePUT /tasks/v1/users/@me/lists/{tasklist}
Updates the authenticated user's specified task list.

REST Resource: tasks

Methods
clearPOST /tasks/v1/lists/{tasklist}/clear
Clears all completed tasks from the specified task list.
deleteDELETE /tasks/v1/lists/{tasklist}/tasks/{task}
Deletes the specified task from the task list.
getGET /tasks/v1/lists/{tasklist}/tasks/{task}
Returns the specified task.
insertPOST /tasks/v1/lists/{tasklist}/tasks
Creates a new task on the specified task list.
listGET /tasks/v1/lists/{tasklist}/tasks
Returns all tasks in the specified task list.
movePOST /tasks/v1/lists/{tasklist}/tasks/{task}/move
Moves the specified task to another position in the destination task list.
/tasks/v1/lists/{tasklist}/tasks/{task}
Updates the specified task.
updatePUT /tasks/v1/lists/{tasklist}/tasks/{task}
Updates the specified task.