Events/Logistics
shipment.in_transit

Shipment in transit

The driver is on the way to the dropoff.

When this fires

Fires whenever the underlying state change happens on the platform.

Sample payload

This is the exact envelope shape we POST to your endpoint — outer wrapper plus the per-event data payload. Field values are randomised on each render so you see the general shape, not a fixed example.

json
{
  "id": "72927a88-8a81-43b5-935f-62daafc58d1d",
  "event": "shipment.in_transit",
  "created": "2026-06-12T15:00:35.584Z",
  "data": {
    "shipmentId": "cmpaq42iitx00000000000000",
    "merchantReference": "PHR-9302",
    "carrier": "uber",
    "lastKnownLat": 6.498450932606648,
    "lastKnownLng": 3.5220069692090616,
    "lastPingAt": "2026-06-12T15:00:35.584Z",
    "etaMinutes": 16
  }
}

Use cases

  • Trigger any downstream automation that cares about this state change.
  • Mirror the event into your data warehouse for analytics.
  • Notify a human channel for high-signal events.

Subscribe in the dashboard

To start receiving this event, add it to a webhook's subscription list in Developers → Webhooks. Wildcard subscriptions ( shipment.*) work too — see the webhooks guide for the matching rules.