clockodo_create_entry
Create a Clockodo time entry with customer, project, service, and billable flag. Define start time plus duration or end time; optionally include text or assign to another user.
Instructions
Creates a time entry. Required: customers_id, projects_id, services_id, billable. Time: either time_since + time_until, or time_since + duration (minutes). Optional: text (use clockodo_list_entry_texts for consistent naming), users_id (admin only).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | ||
| billable | Yes | whether the time counts as billable | |
| duration | No | duration in MINUTES; required unless time_until is given | |
| users_id | No | admin only: create for another user | |
| time_since | Yes | ISO datetime YYYY-MM-DDTHH:mm:ss | |
| time_until | No | ISO datetime; required unless duration is given | |
| projects_id | Yes | ||
| services_id | Yes | ||
| customers_id | Yes |