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
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hours_id | Yes |
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}`); }