Create Time Entry
create_time_entryLog hours worked on a project, specifying project ID, decimal hours, and date. Mark entries as billable for client invoicing.
Instructions
Log a time entry for a project. Requires projectId, hours (decimal), and date. Mark as billable=true to include in client invoicing. Example: projectId='proj_abc', hours=2.5, description='Frontend review', billable=true, date='2026-05-10' / Registra una entrada de tiempo para un proyecto. Requiere projectId, horas (decimal) y fecha. Marca billable=true para incluirlo en la facturacion al cliente.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID / ID del proyecto | |
| hours | Yes | Hours worked (decimal, e.g. 1.5) / Horas trabajadas (decimal) | |
| date | Yes | Work date ISO 8601 (YYYY-MM-DD) / Fecha del trabajo | |
| description | No | Description of work done / Descripcion del trabajo realizado | |
| billable | No | Whether hours are billable to client (default true) / Si las horas son facturables | |
| userId | No | User ID (defaults to API key owner) / ID del usuario (por defecto el propietario de la API key) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| userId | No | ||
| projectId | No | ||
| hours | Yes | ||
| description | No | ||
| billable | No | ||
| date | No | ||
| status | No | ||
| createdAt | No | ||
| updatedAt | No |