OrderShipping
Tracking and delivery details for a shipped order.
- carrierType: string nullablerequired
The carrier, e.g.
Colissimo.nullwhen unknown. - deliveredType: string · DateStringFormat: date-timenullable
At requiredWhen the parcel was delivered.
nulluntil it arrives.An ISO 8601 date-time in UTC, e.g.
2024-08-14T10:23:11.000Z. - historyType: array object[] | null · OrderTrackingEvent[]nullablerequired
The carrier scan history, oldest first.
nullwhen none is available.A single carrier scan in a parcel's tracking history.
- descriptionType: string nullablerequired
Carrier description.
nullwhen none. - locationType: string nullablerequired
Where the scan happened.
nullwhen unknown. - occurredType: string Format: date-time
At requiredWhen the scan happened.
- statusType: stringrequired
Carrier status for this scan.
- shippedType: string Format: date-time
At requiredWhen the order was marked shipped.
- statusType: string nullablerequired
The latest carrier status.
nullbefore the first scan. - trackingType: string
Number requiredThe carrier tracking number.
- trackingType: string nullable
Url requiredA link to track the parcel.
nullwhen unavailable.
Examples
{
"trackingNumber": "6A18432197431",
"carrier": "Colissimo",
"trackingUrl": "https://www.laposte.fr/outils/suivre-vos-envois?code=6A18432197431",
"status": "in_transit",
"shippedAt": "2026-06-14T09:12:00.000Z",
"deliveredAt": null,
"history": [
{
"status": "in_transit",
"occurredAt": "2026-06-14T18:03:00.000Z",
"location": "Lyon",
"description": "Parcel handed to carrier"
}
]
}