Skip to main content
GET
https://api.usedroptrail.com
/
tracking
/
{id}
/
history
Get Tracking History
curl --request GET \
  --url https://api.usedroptrail.com/tracking/{id}/history \
  --header 'Authorization: Bearer <token>'
{
  "delivery_id": "<string>",
  "current_status": "<string>",
  "events": [
    {
      "timestamp": "<string>",
      "status": "<string>",
      "location": "<string>",
      "description": "<string>",
      "updated_by": "<string>"
    }
  ]
}
Get a chronological list of tracking events and status updates for a specific delivery request.

Path Parameters

id
string
required
The unique identifier of the delivery request

Response

delivery_id
string
The unique identifier of the delivery request
current_status
string
Current status of the delivery
events
array
List of tracking events in chronological order

Example Response