log_time
Track and record time spent on tasks in ClickUp by specifying task ID, duration, and optional description. Simplify time management for project workflows.
Instructions
Log time spent on a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description | |
duration | Yes | Duration (e.g., '2h 30m') | |
task_id | Yes | Task ID |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional description",
"type": "string"
},
"duration": {
"description": "Duration (e.g., '2h 30m')",
"type": "string"
},
"task_id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"task_id",
"duration"
],
"type": "object"
}