harvest_delete_time_entry
Remove a specific time entry from Harvest time tracking by providing its unique ID. This tool helps maintain accurate records by deleting incorrect or duplicate entries.
Instructions
Delete a time entry. Use about {"tool": "harvest_delete_time_entry"} for detailed usage and warnings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Time entry ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Time entry ID to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}