🔑 EasyPost Track & Trace
The action is used to get the tracking information from EasyPost.
Documentation
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | Tracking number |
Token | String | API Token |
Outputs
Name | Type | Description |
---|---|---|
Tracking Found? | Boolean | Whether the tracking information was found True / False |
Status | String | Tracking status |
Status Description | String | Detailed description of the tracking status |
Ship Date | String | The date of the shipment. Format: YYYY-MM-DDThh:mm:ss |
Last Event Date | String | The date of the last tracking event. Format: YYYY-MM-DDThh:mm:ss |
Tracking Events | List | List of all the tracking events. See the example below |
Carrier | String | Carrier |
Sample Response
Activity History
{
"id": "",
"object": "Tracker",
"mode": "production",
"tracking_code": "",
"status": "delivered",
"status_detail": "unknown",
"created_at": "2022-03-27T11:58:01Z",
"updated_at": "2022-05-13T07:13:02Z",
"signed_by": null,
"weight": null,
"est_delivery_date": null,
"shipment_id": "",
"carrier": "RoyalMail",
"tracking_details": [
{
"object": "TrackingDetail",
"message": "Item Received",
"description": null,
"status": "in_transit",
"status_detail": "unknown",
"datetime": "2022-05-12T08:31:09Z",
"source": "RoyalMail",
"carrier_code": null,
"tracking_location": {
"object": "TrackingLocation",
"city": "OFFICE",
"state": null,
"country": "GB",
"zip": "GBR"
}
},
{
"object": "TrackingDetail",
"message": "Item Received",
"description": null,
"status": "in_transit",
"status_detail": "unknown",
"datetime": "2022-05-12T19:57:56Z",
"source": "RoyalMail",
"carrier_code": null,
"tracking_location": {
"object": "TrackingLocation",
"city": "OFFICE",
"state": null,
"country": "GB",
"zip": "GBR"
}
},
{
"object": "TrackingDetail",
"message": "Delivered by",
"description": null,
"status": "delivered",
"status_detail": "unknown",
"datetime": "2022-05-13T07:51:36Z",
"source": "RoyalMail",
"carrier_code": null,
"tracking_location": {
"object": "TrackingLocation",
"city": null,
"state": null,
"country": "GB",
"zip": "GBR"
}
}
],
"fees": [],
"carrier_detail": {
"object": "CarrierDetail",
"service": null,
"container_type": null,
"est_delivery_date_local": null,
"est_delivery_time_local": null,
"origin_location": null,
"origin_tracking_location": null,
"destination_location": null,
"destination_tracking_location": null,
"guaranteed_delivery_date": null,
"alternate_identifier": null,
"initial_delivery_attempt": null
},
"public_url": ""
}
Updated 12 months ago