get_task
Retrieve a specific task by its ID from Clockify using workspace, project, and task identifiers. Facilitates precise task management and integration with time tracking workflows.
Instructions
Get a specific task by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID | |
taskId | Yes | Task ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID",
"type": "string"
},
"taskId": {
"description": "Task ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"projectId",
"taskId"
],
"type": "object"
}