🔑 Australia Post Track & Trace

The action is used to get the tracking information from Australia Post or Startrack.

Inputs

NameDescription
Tracking NumberAustralia Post or Startrack tracking number
UsernameAustralia Post username
PasswordAustralia Post Password
Account NumberAustralia Post Account Number

Outputs

NameDescription
Found Tracking?Whether the tracking information was found
True / False
StatusStatus of the package delivery
Status DescriptionDetailed description of the tracking status
Shiped DateThe date of the shipment.
Format:
DD-MM-YYY hh:mm:ss AM/PM
Last Event DateThe date of the last tracking event.
Format:
DD-MM-YYY hh:mm:ss AM/PM
Activity HistoryList of all the tracking events.
See the example below
Tracking URLTracking URL to share with the customer

Sample Response
Activity History

{
    "tracking_results": [
        {
            "tracking_id": "3643R2037926",
            "trackable_items": [
                {
                    "consignment_id": "3643R2037926",
                    "number_of_items": 1,
                    "items": [
                        {
                            "article_id": "3643R203792601000960306",
                            "product_type": "Express Post",
                            "events": [
                                {
                                    "location": "FAIRLIGHT NSW",
                                    "description": "Delivered",
                                    "date": "2024-01-11T13:50:34+11:00"
                                },
                                {
                                    "location": "ALLAMBIE HEIGHTS NSW",
                                    "description": "Onboard for delivery",
                                    "date": "2024-01-11T09:16:48+11:00"
                                },
                                {
                                    "description": "In transit to next facility in CHULLORA NSW",
                                    "date": "2024-01-10T17:57:24+11:00"
                                },
                                {
                                    "location": "MELBOURNE AIRPORT VIC",
                                    "description": "Item processed at facility",
                                    "date": "2024-01-10T17:44:50+11:00"
                                },
                                {
                                    "description": "Received and ready for processing",
                                    "date": "2024-01-10T17:06:17+11:00"
                                },
                                {
                                    "description": "Shipping information approved by Australia Post",
                                    "date": "2024-01-10T15:41:35+11:00"
                                },
                                {
                                    "description": "Shipping information received by Australia Post",
                                    "date": "2024-01-10T15:11:23+11:00"
                                }
                            ],
                            "status": "Delivered"
                        }
                    ]
                }
            ]
        }
    ]
}