create_project
Create a new project in Zoho Projects by specifying name, description, start and end dates, and visibility settings to organize work and track progress.
Instructions
Create a new project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Project description | |
end_date | No | End date (YYYY-MM-DD) | |
is_public | No | Is project public | |
name | Yes | Project name | |
start_date | No | Start date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Project description",
"type": "string"
},
"end_date": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"is_public": {
"default": false,
"description": "Is project public",
"type": "boolean"
},
"name": {
"description": "Project name",
"type": "string"
},
"start_date": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}