get_task
Retrieve detailed information about a specific task in Zoho Projects by providing the project ID and task ID to access task details and status.
Instructions
Get details of a specific task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID | |
| task_id | Yes | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID",
"type": "string"
},
"task_id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"project_id",
"task_id"
],
"type": "object"
}