GitScrum / Docs

Timer Cancelled

Webhook payload reference for the time-tracking.issues.cancel event, triggered when a running timer is cancelled.

Triggered when a running time tracker is cancelled without saving the tracked time.

  • Event: time-tracking.issues.cancel
  • Category: Tasks
  • Triggers: Clicking the cancel button on an active timer

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": null,
  "status": "cancel",
  "time": "2026-02-06 15:00:00"
}

Field Reference

FieldTypeDescription
uuidintegerTime tracking record ID
task.uuidstringUUID of the task
userobjectUser who cancelled the timer
commentstring or nullAlways null on cancel
statusstringAlways "cancel" for this event
timestringCancel datetime (Y-m-d H:i:s)

Notes

  • Cancelling discards the tracked time — no time entry is saved.
  • Differs from stop: stop saves the time entry, cancel discards it.