REST API

Documentation


Track & Trace

Are your orders shipped by parcel post? When the status of an order changes to Shipped, the API will make a Track & Trace URL from our shipping partner available if possible. This URL lets your customer track their shipment online.

GET "/orders/..." response:
{
    "id": "83432183",
    "status": "Shipped",
    "trackingUrl": "http://postnl.nl/tracktrace/...",
    "dateTime": "2015-10-21T12:53:06.9931422",
    ...
}

It may occur that the Track & Trace URL is not available right away. We recommend to always check whether the trackingUrl field is present.

Next