create_hours
Log work hours in Simplicate by entering employee time, project details, and start date to track billable activities and maintain accurate timesheet records.
Instructions
Create a new hours entry
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| employee_id | No | ||
| hours | Yes | ||
| note | No | ||
| project_id | No | ||
| start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"employee_id": {
"type": "string"
},
"hours": {
"type": "number"
},
"note": {
"type": "string"
},
"project_id": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"hours",
"start_date"
],
"type": "object"
}