Requires authorization
Deletes the authenticated user's specified task list. Try it now or see an example.
Request
HTTP request
DELETE https://www.googleapis.com/tasks/v1/users/@me/lists/tasklist
Parameters
Parameter name | Value | Description |
---|---|---|
Path parameters | ||
tasklist |
string |
Task list identifier. |
Authorization
This request requires authorization with the following scope (read more about authentication and authorization).
Scope |
---|
https://www.googleapis.com/auth/tasks |
Request body
Do not supply a request body with this method.
Response
If successful, this method returns an empty response body.
Examples
Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).
Java
Uses the Java client library.
service.tasklists.delete("taskListID").execute();
PHP
Uses the PHP client library.
$service->deleteTasklists('taskListID');
Python
Uses the Python client library.
service.tasklists().delete(tasklist='taskListID').execute()
.NET
Uses the .NET client library.
service.Tasklists.Delete("taskListID").Fetch();
Try it!
Use the APIs Explorer below to call this method on live data and see the response. Alternatively, try the standalone Explorer.