GitScrum / Docs

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

FieldTypeDescription
uuidintegerTime tracking record ID
task.uuidstringUUID of the task
userobjectUser who stopped the timer
commentstring or nullOptional comment added when stopping
statusstringAlways "stop" for this event
timestringStop datetime (Y-m-d H:i:s)

Notes

  • The comment field contains the optional note the user can add when stopping the timer.
  • The tracked duration = stop time minus the corresponding start time.