update_project
Modify project details including name, description, dates, and status in Zoho Projects to keep project information current and accurate.
Instructions
Update an existing project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Project description | |
| end_date | No | End date (YYYY-MM-DD) | |
| name | No | Project name | |
| project_id | Yes | Project ID | |
| start_date | No | Start date (YYYY-MM-DD) | |
| status | No | Project status |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Project description",
"type": "string"
},
"end_date": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"name": {
"description": "Project name",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"start_date": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"status": {
"description": "Project status",
"enum": [
"active",
"template",
"archived"
],
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}