Trackings - Push Notifications

This endpoint allows updating the tracking status in realtime for expeditions in Deliverea. This operation con be done individually or in batches of several expeditions.

This allows us to maintain an updated status of a expedition during the entire shipment process.

Example request:

curl --location --request PUT 'https://api.deliverea.com/trackings' \
--header 'Content-Type: application/json' \
--header 'carrier-token: <token>' \
--data '[
    {
        "carrier_reference": "carrier_reference",
        "code": "DEL",
        "details": "Shipment delivered",
        "date": "2024-03-04T10:19:54+0100"
    }
]'

Authentication es performed via Header carrier-token. This unique carrier identifier is to be provided by Deliverea on request.