delete_time_entry
Remove a specific time entry by providing the workspace ID and time entry ID, streamlining time tracking corrections in Clockify.
Instructions
Delete a time entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeEntryId | Yes | Time entry ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"timeEntryId": {
"description": "Time entry ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"timeEntryId"
],
"type": "object"
}