cURL
curl --request GET \ --url https://dev.api.r4technology.io/tracking \ --header 'Authorization: Basic <encoded-value>'
{ "order_id": "ZG12345678", "current_status": "return closed", "tracking_updates": [ { "status": "detail", "timestamp": "2025-03-15T14:23:17Z", "description": "Package scanned and received at a dropoff point" }, { "status": "sub pickup", "timestamp": "2025-03-15T16:45:32Z", "description": "Package picked up from dropoff location" }, { "status": "hub dropoff", "timestamp": "2025-03-16T09:12:48Z", "description": "Package arrived at consolidation hub" }, { "status": "return closed", "timestamp": "2025-03-16T14:28:15Z", "description": "Package left consolidation hub and return process complete" } ], "total_updates": 4 }
Get tracking information for an order by order ID
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The order ID to track
Tracking information for the order
The order ID being tracked
Current status of the order
Array of tracking updates in chronological order
Show child attributes
The return/order ID for this tracking update
Status code for this update
ISO 8601 timestamp of the update
Human-readable description of the status
Total number of tracking updates