Skip to content

View Tracking Events

GET
/shipping/tracking_events/{shipment_id}

View tracking events for a shipment. Tracking events will be available if the label was purchased in Veeqo.

shipment_id
integer

The ID of the shipment to retrieve tracking events for.

A list of tracking events associated with the given shipment.

Example
[
{
"timestamp": "2024-12-26T15:57:20+00:00",
"description": "Awaiting collection",
"detail": null,
"location": null,
"status": "awaiting_collection"
},
{
"timestamp": "2024-12-27T00:37:00+00:00",
"description": "In transit",
"detail": null,
"location": "Doraville, GA, US",
"status": "in_transit"
},
{
"timestamp": "2024-12-31T01:57:36+00:00",
"description": "Out for delivery",
"detail": null,
"location": "",
"status": "out_for_delivery"
},
{
"timestamp": "2025-01-02T19:22:00+00:00",
"description": "Delivered",
"detail": null,
"location": "East Syracuse, NY, US",
"status": "delivered"
}
]

The shipment ID was not found.