Events/Logistics
shipment.assigned

Shipment assigned

A carrier accepted the shipment and a driver is en route to pickup.

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": "75659d90-1332-4a34-a0ae-b989db74fee9",
  "event": "shipment.assigned",
  "created": "2026-06-12T18:11:58.944Z",
  "data": {
    "shipmentId": "c185aclin6li0000000000000",
    "merchantReference": "PHR-9957",
    "carrier": "uber",
    "driverName": "Chinedu Achebe",
    "driverPhone": "+2349137788962",
    "vehicleType": "motorcycle",
    "vehiclePlate": "IKD-147ZC",
    "pickupEtaMinutes": 24,
    "assignedAt": "2026-06-12T18:11:58.944Z"
  }
}

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.