create_project
Create a new project in Clockify by specifying workspace ID, project name, and optional details like client ID, visibility, billing status, color, and estimates for efficient project management.
Instructions
Create a new project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billable | No | Whether project is billable (optional) | |
clientId | No | Client ID (optional) | |
color | No | Project color (hex code, optional) | |
estimate | No | Project estimate (optional) | |
isPublic | No | Whether project is public (optional) | |
name | Yes | Project name | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"billable": {
"description": "Whether project is billable (optional)",
"type": "boolean"
},
"clientId": {
"description": "Client ID (optional)",
"type": "string"
},
"color": {
"description": "Project color (hex code, optional)",
"type": "string"
},
"estimate": {
"description": "Project estimate (optional)",
"properties": {
"estimate": {
"description": "Estimate duration (ISO 8601 duration)",
"type": "string"
},
"type": {
"description": "Estimate type",
"enum": [
"AUTO",
"MANUAL"
],
"type": "string"
}
},
"type": "object"
},
"isPublic": {
"description": "Whether project is public (optional)",
"type": "boolean"
},
"name": {
"description": "Project name",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"name"
],
"type": "object"
}