list_tasks
Retrieve tasks from a Zoho Projects workspace or specific project to view assignments, track progress, and manage work items with pagination support.
Instructions
List tasks from a project or portal
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number | |
| per_page | No | Items per page | |
| project_id | No | Project ID (optional for portal-level) |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "Page number",
"type": "number"
},
"per_page": {
"default": 10,
"description": "Items per page",
"type": "number"
},
"project_id": {
"description": "Project ID (optional for portal-level)",
"type": "string"
}
},
"type": "object"
}