update_project
Modify project details such as name, client, visibility, billing status, color, or archive state in Clockify by specifying workspace and project IDs.
Instructions
Update an existing project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| archived | No | Whether project is archived | |
| billable | No | Whether project is billable | |
| clientId | No | Client ID | |
| color | No | Project color (hex code) | |
| isPublic | No | Whether project is public | |
| name | No | Project name | |
| projectId | Yes | Project ID | |
| workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether project is archived",
"type": "boolean"
},
"billable": {
"description": "Whether project is billable",
"type": "boolean"
},
"clientId": {
"description": "Client ID",
"type": "string"
},
"color": {
"description": "Project color (hex code)",
"type": "string"
},
"isPublic": {
"description": "Whether project is public",
"type": "boolean"
},
"name": {
"description": "Project name",
"type": "string"
},
"projectId": {
"description": "Project ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"projectId"
],
"type": "object"
}