GitScrum / Docs

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

FieldTypeDescription
uuidintegerTime tracking record ID
task.uuidstringUUID of the task
userobjectUser who created the entry
commentstring or nullOptional comment
statusstringAlways "create" for this event
timenullAlways 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 uuid to query the API for full details.