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"
[
  {
    "created_at": {},
    "message": "Arrived at facility",
    "status": "in_transit",
    "tracking_location": {
      "city": "Atlanta",
      "country": "US",
      "state": "GA",
      "zip": "30301"
    }
  }
]