🔑 XDP Track & Trace
This action is used to get the tracking information from XDP for a specified tracking number
This action uses the following endpoint from XDP:
Further Documentation:
https://xdp.sysx.co.uk/api/customerservice/md#statusupdates
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | Tracking Number |
Account Number | String | XDP Account Number |
API Key | String | XDP API Key |
Outputs
Name | Type | Description |
---|---|---|
Found Tracking? | Boolean | Whether the tracking information was found True / False |
DG Shipping Status | String | Tracking status: Ready for Shipment, Delivered, In Transit, Problem with Delivery, Returning to Sender, Ready for Pickup, Label Created |
Status Description | String | Description of the status |
Last Event Date | String | The date of the last tracking event. Format: YYYY-MM-DDThh:mm:ss |
Raw Data | Object | Raw Data returned from API call |
Tracking Events | Object | Tracking Events formatted and sorted |
Statuses mapping
{
"Label Created": [
"CREATE"
],
"Ready for Shipment": [
"PRINT"
],
"Delivered": [
"DELIVERED",
"LEFT SAFE MESSAGE SE",
"CLEAN MESSAGE SENT"
],
"In Transit": [
"COLLECT",
"EDIT",
"DELIVERY",
"CALL",
"NEXT STOP",
"EMAIL",
"SMS"
],
"Returning to Sender": [],
"Problem with Delivery": [
"EXCEPTION",
"NOT RECEIVED",
"NOT COLLECTED EMAIL"
],
"Ready for Pickup": []
}
Updated about 3 hours ago