todoist_get_projects
Retrieve all active projects from Todoist with pagination support, allowing users to manage and organize tasks efficiently using a specified limit and cursor for seamless navigation.
Instructions
Get all active projects with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for next page (optional) | |
limit | No | Maximum number of projects to return (default: 50, max: 200) (optional) |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor for next page (optional)",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of projects to return (default: 50, max: 200) (optional)",
"type": "number"
}
},
"type": "object"
}