Get checkpoints

GET/api/v2/shipments/{shipment_id}/track

List the newest tracking updates for a given shipment

Authorization

Add HTTP header Authorization with the received API key as the bearer token:

Authorization
API Key

Response

Response body

Content-Type
application/json
Body
PropertyTypeDescription
timeline
required
date_time
string
Date time in ISO 8601 format (YYYY-MM-DD HH:MM:SS) in UTC
required
date-time
description
string
required
nullable
label
string
nullable
status
string
required
nullable

Response body example

JSON
{
  "timeline": [
    {
      "date_time": "2019-08-24T14:15:22Z",
      "description": "string",
      "label": "string",
      "status": "string"
    }
  ]
}