Timer Stopped
Webhook payload reference for the time-tracking.issues.stop event, triggered when a timer is stopped on a task.
Triggered when the time tracker is stopped on a task, saving the tracked time.
- Event:
time-tracking.issues.stop - Category: Tasks
- Triggers: Clicking the stop timer button on a task
Payload
{
"uuid": 123,
"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": "Finished implementing the login form",
"status": "stop",
"time": "2026-02-06 15:45:00"
}Field Reference
| Field | Type | Description |
|---|---|---|
uuid | integer | Time tracking record ID |
task.uuid | string | UUID of the task |
user | object | User who stopped the timer |
comment | string or null | Optional comment added when stopping |
status | string | Always "stop" for this event |
time | string | Stop datetime (Y-m-d H:i:s) |
Notes
- The
commentfield contains the optional note the user can add when stopping the timer. - The tracked duration = stop
timeminus the corresponding starttime.
Related
- Timer Started —
time-tracking.issues.start - Timer Cancelled —
time-tracking.issues.cancel