Skip to main content

Time tracking webhook events

Reference time-entry create, update, and delete webhook payloads.

Written by Geoff Mina

This reference covers the webhook event names currently available for this record type and an example JSON payload.

X-Event-Type values

  • TimerCreate

  • TimerUpdate

  • TimerDelete

Payloads reflect the record at delivery time and may gain additional fields. Integrations should ignore unknown fields and use the event type plus stable record IDs rather than depending on property order.

Example payload

{
"id": "64b857b0b17c7c727001331c",
"accountId": 10016,
"sampleData": false,
"userId": 16,
"timerStart": "2023-07-19T21:37:35.684Z",
"timerEnd": "2023-07-19T21:37:52.431Z",
"userFullName": "Geoffrey Mina",
"notes": "These are some notes",
"clientId": "6490580de30ecf51c2c22ffa",
"projectId": "649976d658c17d4f29b068ee",
"deliverableId": "649976e158c17d4f29b068ef",
"clientName": "Moxie",
"projectName": "Fun project for client",
"deliverableName": "Task 1",
"timestamp": null,
"timestampUpdated": null,
"invoiceId": null,
"invoiceNumber": null,
"importRecordId": null,
"feeSchedule": null,
"duration": 16
}

For delivery setup and troubleshooting, see Configure event webhooks. The generated Webhooks & Events documentation is the source of truth for the current event catalog.

Did this answer your question?