Events/Logistics
shipment.created

Shipment created

A new shipment was dispatched (order-bound or external).

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": "ffac9f48-6dd4-4ca6-8050-2a0447be3e8e",
  "event": "shipment.created",
  "created": "2026-06-12T15:00:35.562Z",
  "data": {
    "shipmentId": "c7m67moic26c0000000000000",
    "merchantReference": "PHR-5352",
    "carrier": "indrive",
    "carrierName": "inDrive",
    "providerShipmentId": "INDRIVE-OOO465G",
    "trackingUrl": "https://track.indrive.example.com/e9snrof6",
    "costKobo": 218958,
    "deliveryEta": "2026-06-12T16:04:35.562Z",
    "pickupAddress": "Adeola Odeku, V.I.",
    "dropoffAddress": "Opebi Road, Ikeja, Lagos",
    "failoverAttempts": [
      {
        "carrier": "indrive",
        "error": null,
        "attemptedAt": "2026-06-12T15:00:35.562Z"
      }
    ],
    "excluded": []
  }
}

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.