🔑 DPD Netherlands Track & Trace
The action is used to get the tracking information from DPD Netherlands.
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | DPD Netherlands tracking number |
Username | String | DPD Netherlands username |
Password | String | DPD Netherlands password |
Outputs
Name | Type | Description |
---|---|---|
Was Tracking Info Found? | Boolean | Whether the tracking information was found True / False |
Status | String | Tracking status |
Status Label | String | Tracking status label |
Status Description | String | Detailed description of the tracking status |
Ship Date | String | The date of the shipment. Format: DD-MM-YYY hh:mm:ss AM/PM |
Last Event Date | String | The date of the last tracking event. Format: DD-MM-YYY hh:mm:ss AM/PM |
Tracking Information | List | List of all the tracking events. See the example below |
Sample Response
Activity History
[
{
"status":"Delivered",
"label":{
"content":"Parcel delivered",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":true,
"showContactInfo":true,
"location":{
"content":"Leeds (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/30/2021 9:54:00 AM",
"bold":true,
"paragraph":false
}
},
{
"status":"Delivered",
"label":{
"content":"Parcel delivered",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Leeds (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/30/2021 8:32:16 AM",
"bold":true,
"paragraph":false
}
},
{
"status":"Courier",
"label":{
"content":"Parcel out for delivery",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Leeds (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/30/2021 6:50:11 AM",
"bold":true,
"paragraph":false
}
},
{
"status":"Depot",
"label":{
"content":"Parcel out for delivery",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Leeds (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/29/2021 11:02:01 PM",
"bold":true,
"paragraph":false
}
},
{
"status":"BetweenDepots",
"label":{
"content":"In transit",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Hinckley (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/29/2021 6:43:20 PM",
"bold":true,
"paragraph":false
}
},
{
"status":"BetweenDepots",
"label":{
"content":"In transit",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Hinckley (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/29/2021 6:43:02 PM",
"bold":true,
"paragraph":false
}
},
{
"status":"BetweenDepots",
"label":{
"content":"In transit",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Oirschot (NL)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/29/2021 12:43:20 PM",
"bold":true,
"paragraph":false
}
},
{
"status":"Customs",
"label":{
"content":"At parcel delivery centre",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Aschaffenburg (DE)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/27/2021 2:38:01 PM",
"bold":true,
"paragraph":false
}
},
{
"status":"Customs",
"label":{
"content":"At parcel delivery centre",
"bold":true,
"paragraph":false
},
"description":{
"content":[
"Object"
]
},
"statusHasBeenReached":true,
"isCurrentStatus":false,
"showContactInfo":true,
"location":{
"content":"Oldbury (GB)",
"bold":true,
"paragraph":false
},
"date":{
"content":"7/27/2021 2:32:55 PM",
"bold":true,
"paragraph":false
}
}
]
Tracking Status
For DPD Netherlands status DG uses a combination of the status and status label for defining the actual tracking status.
Updated 4 months ago