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
| Campo | Tipo | Descripción |
|---|---|---|
uuid | integer | ID del registro de control de tiempo |
task.uuid | string | UUID de la tarea |
user | object | Usuario que creó el registro |
comment | string o null | Comentario opcional |
status | string | Siempre "create" para este evento |
time | null | Siempre 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
uuidpara consultar los detalles completos vía API.
Relacionado
- Timer Iniciado —
time-tracking.issues.start - Registro de Tiempo Eliminado —
time-tracking.issues.destroy