list_issues
Retrieve and display issues from Zoho Projects, allowing users to view project or portal-level issues with pagination controls for efficient issue management.
Instructions
List issues 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"
}