🔑 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

NameTypeDescription
Tracking NumberStringTracking number
API KeyStringAPI key for authentication

Outputs

NameTypeDescription
Found Tracking?BooleanWhether the tracking information was found
True / False
DG Shipping StatusStringTracking status:
Ready for Shipment,
Delivered,
In Transit,
Problem with Delivery,
Returning to Sender,
Ready for Pickup,
Label Created, More Information Needed
StatusStringThe 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 URLStringIngrid Tracking URL
Last Event DateStringThe date of the last tracking event.
Format:
YYYY-MM-DDThh:mm:ss
Raw DataObjectTracking 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"
    ]
}