Parselv1.0.0
Shipping Labels

Track label

Track a shipping label by ID.

GET
/shipping_labels/{shipping_label_id}/track

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

shipping_label_id*string

Shipping label ID

Formatuuid

Query Parameters

page?integer

Page number

page_size?integer

Page size

Response Body

application/json

curl -X GET "https://api.parsel.app/shipping_labels/123e4567-e89b-12d3-a456-426614174000/track?page=1&page_size=10"
{
  "data": [
    {
      "created_at": {},
      "message": "Arrived at facility",
      "status": "in_transit",
      "tracking_location": {
        "city": "Atlanta",
        "country": "US",
        "state": "GA",
        "zip": "30301"
      }
    }
  ],
  "metadata": {
    "current_page": 1,
    "page_size": 25,
    "total_count": 87,
    "total_pages": 4
  }
}