Share a tracking link with your customers πŸ”—

The API gives you tracking data through the orderTrack link and the Track & Trace webhook. If you want to hand your own customers a ready-to-open tracking page, use one of the two link types below.

Both links open the same tracking page, but they differ in how access is granted:

Reference linkOrder ID link (platformTrackingUrl)
AccessUser must open the page and solve a captchaUnlocks the shipment directly, no captcha
SourceBuild it yourself from data.referenceDelivered ready-to-use in the Place Order response
Use caseLegacy / manual integrationRecommended for new integrations

The public tracking link (Reference-based)

https://my.cargoboard.com/de/tracking?reference={reference}&secret={postcode}
  • {reference} β€” the shipment reference returned in the order response (data.reference).
  • {postcode} β€” the postcode of the consignee (acts as the access secret so only people who know the destination can open the page).

Example

https://my.cargoboard.com/de/tracking?reference=11453140&secret=41061

Both values are part of the data you already have after booking, so you can generate the link automatically inside your own platform β€” no extra API call needed.

⚠️

Opening this link does not unlock the shipment automatically. The user still has to open the page and solve a captcha before tracking data is shown.


The platform tracking link (Order ID-based)

The response of POST /v1/orders contains:

"platformTrackingUrl": "https://my.cargoboard.com/tracking?order-id={orderId}&consignee-post-code={postCode}"
  • order-id β€” the Order ID of the created order.
  • secret β€” the postcode of the consignee (acts as the access secret so only people who know the destination can open the page).

Example

https://my.cargoboard.com/tracking?order-id=cmrlp4gnl00133pbgdp6ghvkl&consignee-post-code=10115
βœ…

This link unlocks the shipment directly β€” no captcha step required. Use this whenever you want your customers to reach tracking with a single click.

Where to get the values

After placing an order, the response contains data.reference and, for the direct-unlock variant, data.platformTrackingUrl already assembled. The consignee postcode is the one you sent in consignee.address.postCode.

πŸ’‘

The orderTrack link in the response links array points to the tracking API endpoint (machine-readable JSON), not to this customer-facing page. Use the API link for your own systems, and one of the two links above for end customers.