🔑 Wonderment Track & Trace
This action is used to get the tracking information from Wonderment for a specified tracking code
https://wonderment.readme.io/reference/get_shipments-search-searchterm
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | Tracking number |
API Key | String | API key for authentication |
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, More Information Needed |
Status | String | The original status provided by Wonderment. Possible values: PRE_TRANSIT TRANSIT SHIPMENT_STALLED ATTEMPTED_DELIVERY DELIVERED RETURNED ERROR SHIPMENT_CREATED READY_FOR_PICKUP OUT_FOR_DELIVERY CANCELLED (With USPS only) CONFIRMED (With USPS only) |
Tracking URL | String | Ingrid Tracking URL |
Last Event Date | String | The date of the last tracking event. Format: YYYY-MM-DDThh:mm:ss |
Raw Data | Object | Tracking Data |
Statuses mapping
{
"Label Created, More Information Needed": [
"SHIPMENT_CREATED",
"CONFIRMED"
],
"Ready for Shipment": [
"PRE_TRANSIT"
],
"Delivered": [
"DELIVERED"
],
"In Transit": [
"TRANSIT",
"OUT_FOR_DELIVERY"
],
"Returning to Sender": [
"RETURNED"
],
"Problem with Delivery": [
"SHIPMENT_STALLED",
"ATTEMPTED_DELIVERY",
"ERROR",
"CANCELLED"
],
"Ready for Pickup": [
"READY_FOR_PICKUP"
]
}
Updated 2 days ago