search
Search across Zoho Projects to find tasks, issues, milestones, forums, events, and project information using specific search terms and filters.
Instructions
Search across portal or project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| module | No | Module to search in | |
| page | No | Page number | |
| per_page | No | Items per page | |
| project_id | No | Project ID (optional for portal-level search) | |
| search_term | Yes | Search term/query |
Input Schema (JSON Schema)
{
"properties": {
"module": {
"description": "Module to search in",
"enum": [
"all",
"projects",
"tasks",
"issues",
"milestones",
"forums",
"events"
],
"type": "string"
},
"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 search)",
"type": "string"
},
"search_term": {
"description": "Search term/query",
"type": "string"
}
},
"required": [
"search_term"
],
"type": "object"
}