create_time_entry
Automate time tracking by creating new entries in Clockify. Specify workspace, start and end times, project, task, tags, and billing status to manage time efficiently.
Instructions
Create a new time entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billable | No | Whether the entry is billable (optional) | |
description | No | Time entry description | |
end | No | End time (ISO 8601 format, optional for ongoing entries) | |
projectId | No | Project ID (optional) | |
start | Yes | Start time (ISO 8601 format) | |
tagIds | No | Array of tag IDs (optional) | |
taskId | No | Task ID (optional) | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"billable": {
"description": "Whether the entry is billable (optional)",
"type": "boolean"
},
"description": {
"description": "Time entry description",
"type": "string"
},
"end": {
"description": "End time (ISO 8601 format, optional for ongoing entries)",
"type": "string"
},
"projectId": {
"description": "Project ID (optional)",
"type": "string"
},
"start": {
"description": "Start time (ISO 8601 format)",
"type": "string"
},
"tagIds": {
"description": "Array of tag IDs (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"taskId": {
"description": "Task ID (optional)",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"start"
],
"type": "object"
}