Skip to main content
GET
/
tracking
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
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

order_id
string
default:ZG12345678
required

The order ID to track

Response

Tracking information for the order

order_id
string

The order ID being tracked

current_status
string

Current status of the order

tracking_updates
object[]

Array of tracking updates in chronological order

total_updates
integer

Total number of tracking updates