Turn a meeting into a time entry
event_to_time_entryConvert a calendar event into time-tracker entry arguments for billing, using event ID and project details. Returns JSON for entry_add without writing.
Instructions
Take one event and return the exact arguments for the time-tracker's entry_add, so a meeting that already happened becomes billable time without retyping it. Writes nothing: pass the JSON straight to entry_add.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rate | No | Hourly rate for this entry; a number (120) or the words the user said ('120 euros an hour') | |
| project | Yes | Project or client the meeting is billed to | |
| currency | No | Currency of the rate: EUR, USD, GBP, PLN, or the word the user said ('euros'). Without it the time-tracker falls back to USD. | |
| event_id | Yes | Event id from events_list, events_search or next_event |