Time Entry Created
Webhook payload reference for the time-tracking.issues.store event, triggered when a manual time entry is created.
Triggered when a manual time entry is created (not via the timer).
- Event:
time-tracking.issues.store - Category: Tasks
- Triggers: Manually adding a time entry to a task
Payload
{
"uuid": 124,
"task": {
"uuid": "abc123-def456-ghi789"
},
"user": {
"id": 1,
"uuid": "user-uuid-123",
"name": "Jane Smith",
"username": "janesmith",
"avatar": "https://avatar.url/jane.jpg",
"headline": "Lead Developer",
"location": "Porto, Portugal",
"timezone_name": "Europe/Lisbon",
"language": "en",
"created_at": {
"date_for_humans": "1 year ago",
"iso8601": "2025-01-15T10:00:00+00:00",
"timestamp": 1736935200
}
},
"comment": null,
"status": "create",
"time": null
}Field Reference
| Field | Type | Description |
|---|---|---|
uuid | integer | Time tracking record ID |
task.uuid | string | UUID of the task |
user | object | User who created the entry |
comment | string or null | Optional comment |
status | string | Always "create" for this event |
time | null | Always null for manual entries |
Notes
- Manual time entries differ from timer-based entries: they are created directly without starting/stopping a timer.
- The actual duration of the manual entry is not included in the webhook payload. Use the
uuidto query the API for full details.
Related
- Timer Started —
time-tracking.issues.start - Time Entry Deleted —
time-tracking.issues.destroy