Create time entry
redmine_create_time_entryLog work hours against a Redmine issue or project, specifying activity type, comment, and date. Optionally assign to another user or add custom fields.
Instructions
Log hours against an issue or project with an activity type and comment — e.g. "log 3.5 hours on #456 for implementing auth". Exactly one of issue_id or project_id is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hours | Yes | Hours to log, must be positive, e.g. 3.5 for "log 3.5 hours on issue #456". | |
| user_id | No | Log on behalf of another user id. Requires elevated permission — Redmine returns 403 otherwise. | |
| comments | No | Short note describing the work, e.g. "implemented auth". | |
| issue_id | No | Issue to book against. Provide exactly one of issue_id or project_id. | |
| spent_on | No | Date the time was spent, ISO "YYYY-MM-DD". Defaults to today. | |
| project_id | No | Project to book against. Provide exactly one of issue_id or project_id. | |
| activity_id | No | Activity id (e.g. Development, Design); required by some Redmine instances. | |
| custom_fields | No | Custom-field values as { id, value } entries. |