Colissimo / La Poste Track & Trace
The action is used to get the tracking information from Colissimo / La Poste.
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | Colissimo / La Post tracking number |
Outputs
Name | Type | Description |
---|---|---|
Found Tracking? | Boolean | Whether the tracking information was found True / False |
Status | String | Tracking status: Ready for Shipment, Delivered, In Transit, Problem with Delivery, Returning to Sender, Ready for Pickup |
Last Event Date | String | The date of the last tracking event. Format: YYYY-MM-DDThh:mm:ss |
Shipped Date | String | The date of the shipment. Format: YYYY-MM-DDThh:mm:ss Is null when the status is Ready for Shipment |
Last Event | Object | Detailed information about the last tracking event |
Delivery Date | String | Estimated delivery date. Format: YYYY-MM-DDThh:mm:ss Very rarely present |
Activity History | List | List of all the tracking events. See the example below |
Sample Response
Activity History
[
{
"order": 100,
"label": "Your parcel has been delivered to your letter box.",
"date": "2021-04-22T12:43:54+02:00",
"code": "DI1"
},
{
"order": 99,
"label": "Your parcel is at the delivery site that serves your address. We are preparing it for delivery.",
"date": "2021-04-22T09:10:35+02:00",
"code": "MD2"
},
{
"order": 98,
"label": "Your parcel is transiting through our logistics platforms to be delivered to you as quickly as possible.",
"date": "2021-04-21T18:47:00+02:00",
"code": "ET1"
},
{
"order": 97,
"label": "Your parcel is transiting through our logistics platforms to be delivered to you as quickly as possible.",
"date": "2021-04-20T21:53:28+02:00",
"code": "ET1"
},
{
"order": 96,
"label": "Your Colissimo will soon be handed over to us! It is being prepared by the sender. If you have any questions, you can contact your sender or their customer service.",
"date": "2021-04-20T16:06:00+02:00",
"code": "DR1"
}
]
Tracking Status
La Poste API returns a status code for each tracking event. DG maps this status code to one of the predefined statuses. E.g. DR1 - Ready for Shipment.
Statuses mapping
Ready for Shipment: [DR1, PC1, PC2, ET1, ET2]
In Transit: [ET3, ET4, EP1, DO1, DO2, DO3, PB2]
Problem with Delivery: [PB1, ND1]
Delivered: [MD2, DI1, DI2]
Ready for Pickup: [AG1]
Returning to Sender: [RE1]
Updated 12 months ago