create_task
Add a new task to a project in Clockify by specifying workspace ID, project ID, and task name. Optionally include assignees, time estimates, and task status for better project organization.
Instructions
Create a new task in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assigneeIds | No | Array of assignee user IDs (optional) | |
estimate | No | Task estimate (ISO 8601 duration, optional) | |
name | Yes | Task name | |
projectId | Yes | Project ID | |
status | No | Task status (optional) | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"assigneeIds": {
"description": "Array of assignee user IDs (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"estimate": {
"description": "Task estimate (ISO 8601 duration, optional)",
"type": "string"
},
"name": {
"description": "Task name",
"type": "string"
},
"projectId": {
"description": "Project ID",
"type": "string"
},
"status": {
"description": "Task status (optional)",
"enum": [
"ACTIVE",
"DONE"
],
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"projectId",
"name"
],
"type": "object"
}