stop_time_entry
Stop an active time entry by providing workspace ID, user ID, and optional end time. Simplifies time tracking management in Clockify.
Instructions
Stop a running time entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | No | End time (ISO 8601 format, optional - defaults to now) | |
userId | Yes | User ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"description": "End time (ISO 8601 format, optional - defaults to now)",
"type": "string"
},
"userId": {
"description": "User ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"userId"
],
"type": "object"
}