v1

latestOpenAPI 3.1.02026-07-22802,2441.7 MB
wms
Warehouse Locations

Get Warehouse Location

Returns a single Warehouse Location for the WMS connection with the associated warehouse and location id.

get/wms/warehouses/{warehouse_id}/locations/{location_id}

Path parameters

warehouse_idstring required
location_idstring required

Headers

x-trackstar-api-keystring required
Example:<x-trackstar-api-key>

Your organization-level Trackstar API key.

x-trackstar-access-tokenstring required
Example:<x-trackstar-access-token>

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

Response

Successful response

Example response

{
  "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"
    },
    "additional_fields": {
      "key": "value"
    }
  }
}