GitScrum / Docs

Registro de Tiempo Creado

Referencia de payload del webhook para el evento time-tracking.issues.store, disparado cuando un registro de tiempo manual es creado.

Disparado cuando un registro de tiempo manual es creado (no vía timer).

  • Evento: time-tracking.issues.store
  • Categoría: Tareas
  • Gatillos: Agregar manualmente un registro de tiempo a una tarea

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
}

Referencia de Campos

CampoTipoDescripción
uuidintegerID del registro de control de tiempo
task.uuidstringUUID de la tarea
userobjectUsuario que creó el registro
commentstring o nullComentario opcional
statusstringSiempre "create" para este evento
timenullSiempre null para registros manuales

Notas

  • Los registros de tiempo manuales difieren de los registros basados en timer: se crean directamente sin iniciar/detener un timer.
  • La duración real del registro manual no se incluye en el payload del webhook. Usa el uuid para consultar los detalles completos vía API.

Relacionado