Creates a new shipment tracking entry in AfterShip using a tracking number and courier identifier.
This integration registers a new shipment with AfterShip̵... Read More
Creates a new shipment tracking entry in AfterShip using a tracking number and courier identifier.
This integration registers a new shipment with AfterShip’s tracking system so you can monitor package delivery status and updates. When you provide a tracking number and specify which shipping carrier is handling the package, AfterShip begins monitoring the shipment and can provide status updates, delivery estimates, and tracking history throughout the shipping process.
Returns a comprehensive tracking object containing the shipment’s unique AfterShip ID, current status, tracking URLs, and monitoring details. Key fields include id (AfterShip’s unique identifier), tracking_number, slug (courier), tag and subtag (delivery status), courier_tracking_link (direct link to carrier’s tracking page), created_at and updated_at timestamps, plus various delivery-related fields like estimated delivery dates and location information.
{
"data": {
"id": "a1b2c3d4e5f6789012345678901234ef",
"tag": "Pending",
"slug": "fedex",
"title": "1Z999AA1234567890",
"active": true,
"source": "api",
"subtag": "Pending_001",
"subtag_message": "Pending",
"tracking_number": "1Z999AA1234567890",
"created_at": "2026-05-11T14:16:01+00:00",
"updated_at": "2026-05-11T14:16:01+00:00",
"tracked_count": 0,
"checkpoints": [],
"courier_tracking_link": "https://www.fedex.com/fedextrack/?trknbr=1Z999AA1234567890",
"return_to_sender": false,
"first_estimated_delivery": null,
"latest_estimated_delivery": null,
"shipment_delivery_date": null,
"destination_city": null,
"destination_state": null,
"destination_postal_code": null
},
"meta": {
"code": 201
}
} Read LessRetrieves Order Tracking Details using AfterShip. Requires order_tracking_id. Returns the requested data record(s) with all available details.
Retrieves detailed tracking information for a specific shipment from AfterShip using the carrier and tracking number.
This integration fetches comprehensive shi... Read More
Retrieves detailed tracking information for a specific shipment from AfterShip using the carrier and tracking number.
This integration fetches comprehensive shipment tracking details from AfterShip’s database, providing real-time status updates, delivery checkpoints, location history, and estimated delivery information. It’s perfect for customer service teams who need to quickly look up shipment status, track delivery progress, or troubleshoot shipping issues without manually checking multiple carrier websites.
Returns a comprehensive tracking object containing shipment status information including tag (delivery status), tracking_number, checkpoints (array of tracking events with timestamps and locations), shipment_delivery_date, courier_tracking_link, transit_time, and location details like origin_raw_location and destination_raw_location. Each checkpoint includes detailed location data with coordinates, timestamps, and status messages.
{
"data": {
"trackings": [{
"id": "9003ca622abb4840b2c1e2385b35ed16",
"tag": "Delivered",
"slug": "uniuni",
"title": "UUS64V8890242574474",
"tracking_number": "UUS64V8890242574474",
"subtag_message": "Delivered",
"transit_time": 5,
"shipment_delivery_date": "2026-05-04T06:50:56-05:00",
"origin_raw_location": "Los Angeles CA",
"destination_raw_location": "US, United States",
"courier_tracking_link": "https://www.uniuni.com/tracking/#tracking-detail?no=UUS64V8890242574474",
"checkpoints": [{
"tag": "InfoReceived",
"message": "Label Created",
"location": "UNI DATA CENTER",
"checkpoint_time": "2026-04-29T16:15:14-06:00",
"subtag_message": "Info Received"
}, {
"tag": "Delivered",
"message": "Your Parcel has been delivered",
"location": "Des Plaines IL",
"checkpoint_time": "2026-05-04T06:50:56-05:00",
"subtag_message": "Delivered"
}]
}]
}
} Read Less