🔑 Yodel Track & Trace V2

The action is used to get the tracking information from Yodel via the Tracking Events API.

This action uses their GET Tracking Events API - https://developer.yodel.co.uk/product/379/api/146#/TrackingEventsAPI_01/operation/%2Ftracking-events%2Fparcels%2F{parcelNumber}/get

Inputs

NameTypeDescription
Tracking NumberStringYodel tracking number
Client IDStringClient ID
Client SecretStringClient Secret

Outputs

NameTypeDescription
Tracking Found?BooleanWhether the tracking information was found
True / False
StatusStringTracking status
Status DescriptionStringDetailed description of the tracking status
Last Event DateStringThe date of the last tracking event.
Format:
YYYY-MM-DDThh:mm:ss
Tracking DataObjectTracking Data

Sample Response
Tracking Data

{
    "parcel_no": "JD0002249427695596",
    "tracking_events": [
        {
            "scan_datetime": "2025-07-10T12:20:21+00:00",
            "scan_code": "Z",
            "scan_description": "Your parcel has been delivered",
            "site_id": "STOKE HOME DELIVERY"
        },
        {
            "scan_datetime": "2025-07-10T09:39:02+00:00",
            "scan_code": "ET",
            "scan_description": "Your parcel is with one of our drivers for delivery (due between 13:11 - 15:11)",
            "site_id": "STOKE HOME DELIVERY"
        },
        {
            "scan_datetime": "2025-07-10T05:59:45+00:00",
            "scan_code": "A",
            "scan_description": "We have your parcel. Please check back for updates",
            "site_id": "STOKE HOME DELIVERY"
        },
        {
            "scan_datetime": "2025-07-10T04:01:51+00:00",
            "scan_code": "QI",
            "scan_description": "Your parcel has arrived at your delivery depot",
            "site_id": "STOKE SERVICE CENTRE"
        },
        {
            "scan_datetime": "2025-07-09T20:16:33+00:00",
            "scan_code": "BH",
            "scan_description": "Your parcel is at our national hub",
            "site_id": "HATFIELD TERMINAL"
        },
        {
            "scan_datetime": "2025-07-08T23:00:00+00:00",
            "scan_code": "1",
            "scan_description": "We're expecting your parcel from your sender. We will provide updates here once we receive it",
            "site_id": "NORTHAMPTON SERVICE CENTRE"
        }
    ]
}