GET
/
wms
/
warehouses
/
{warehouse_id}
/
locations
/
{location_id}
curl --request GET \
  --url https://production.trackstarhq.com/wms/warehouses/{warehouse_id}/locations/{location_id} \
  --header 'x-trackstar-access-token: <x-trackstar-access-token>' \
  --header 'x-trackstar-api-key: <x-trackstar-api-key>'
{
  "data": {
    "id": "location_id",
    "created_date": "2022-01-01T00:00:00Z",
    "updated_date": "2022-01-02T05:05:05Z",
    "name": "Location Name",
    "warehouse_id": "warehouse_id",
    "type": "pallet",
    "measurements": {
      "length": 1.5,
      "width": 1.5,
      "height": 1.5,
      "unit": "in",
      "weight": 2.5,
      "weight_unit": "lb"
    }
  }
}

Headers

x-trackstar-api-key
string
required

Your organization-level Trackstar API key.

Example:

"<x-trackstar-api-key>"

x-trackstar-access-token
string
required

Your user's access token for a specific integration (ShipHero, Extensiv, etc).

Example:

"<x-trackstar-access-token>"

Path Parameters

warehouse_id
string
required
location_id
string
required

Response

200
application/json
Successful response
data
object