list_task_lists
Retrieve and organize all task lists for a user in Google Tasks. Specify user email, max results, and pagination token for efficient task management.
Instructions
List all task lists for the user.
Args: user_google_email (str): The user's Google email address. Required. max_results (int): Maximum number of task lists to return (default: 1000, max: 1000). page_token (Optional[str]): Token for pagination.
Returns: str: List of task lists with their IDs, titles, and details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
page_token | No | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 1000,
"title": "Max Results",
"type": "integer"
},
"page_token": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Page Token"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email"
],
"type": "object"
}