duplicate_time_entry
Generate a copy of a specific time entry in Clockify by providing the workspace ID, user ID, and time entry ID to streamline repetitive tracking tasks.
Instructions
Duplicate a time entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Time entry ID to duplicate | |
userId | Yes | User ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Time entry ID to duplicate",
"type": "string"
},
"userId": {
"description": "User ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"userId",
"id"
],
"type": "object"
}