FleetbaseFleetbase

System Events

Browse a searchable log of all API events emitted by your Fleetbase instance — useful for auditing and debugging integrations.

System Events

System Events is a log of every API event emitted by your Fleetbase instance. Every time an action triggers an event — an order changes state, a driver is created, a webhook fires — that event is recorded here. Navigate to Developers → System Events.

System Events list — Event description, Code, ID, and Date columns

Event Table

ColumnDescription
EventA human-readable description of what happened
CodeThe machine-readable event identifier (e.g. order.dispatched, driver.created) — filterable
IDThe unique event public ID — click to copy
DateWhen the event was emitted

Searching and Filtering

Use the search field in the header to search events by description or code. The Filters button exposes per-column filters:

  • Code — select a specific event type from the list of all known events
  • Date — filter to a date range

Combine filters to narrow down exactly which events you are looking for.

Event Detail View

Click any row to open the full event record.

System Event detail — Details panel with event metadata and Data panel with full JSON payload

The detail view has two panels:

Details

Metadata about the event — its code, public ID, and the timestamp when it was emitted. Use the Back button in the header to return to the list.

Data

The full JSON payload of the event. This is the same data that would be delivered to a webhook subscribed to this event code.

Relationship to Webhooks

System Events and Webhooks are closely linked. The Code column in System Events matches the event strings you select when configuring a Webhook. If a webhook delivery fails, find the corresponding event here to inspect the payload that was (or should have been) delivered.

Data Retention

Events are retained for a rolling window and are automatically pruned. If you need long-term event archiving, subscribe to the relevant events via a webhook and forward them to your own storage or logging service.

System Events | Fleetbase