delete_hours
Remove hours entries from Simplicate timesheets by specifying the hours ID to maintain accurate time tracking and project records.
Instructions
Delete hours entry
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hours_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hours_id": {
"type": "string"
}
},
"required": [
"hours_id"
],
"type": "object"
}
Implementation Reference
- The handler function that executes the delete_hours tool logic by calling the Simplicate API to delete the specified hours entry.async deleteHours(hoursId: string): Promise<void> { await this.client.delete(`/hours/hours/${hoursId}`); }