Labels
There are two options to trace the shipment.
Track and Trace
Each returned label from the shipment response will include a link to the public Track and Trace page. In case the shipment is being processed by an external distributor, the user will automatically be redirected to the Track and Trace page for that distributor.
{
...
"labels": [
{
...
"trackAndTraceLink": "https://mijn.boekuwzending.com/track-en-trace/3SJHYH4813729/1435CJ"
}
}
}
The above shipment response example has been simplified.
Status information
To process status information pragmatically in your application the status endpoint could be used.
PHP SDK
<?php
require 'vendor/autoload.php';
const CLIENT_ID = '';
const CLIENT_SECRET = '';
$client = \Boekuwzending\ClientFactory::build(CLIENT_ID, CLIENT_SECRET);
$client->label->get('...'); # Replace with your label
The above label response example has been simplified.
List of statuses
The following label statuses can be expected.
Status | Description |
---|---|
created | Label has been created |
scanned | Package is scanned at the distributor |
in_transit | Package is in transit |
at_customs | Package is being held at customs |
delivered | Package is delivered |
at_pickup_point | Package is delivered at a pickup point |
picked_up | Package has been picked up from the pickup_point |
rejected | Package has been rejected by the receiver |
return_in_transit | Package is in return transit to sender |
return_delivered | Package is return delivered to sender |
missing | Package is missing |
canceled | Label canceled |
Table of Contents