v1

latestOpenAPI 3.0.02026-07-266521,3121.2 MB
Locations

GetWarehouseTOTEs

Gets list of tots for a specific location or find a specific tot depending on the request parameters. Specify tot id or tot barcode to find specific tot in the location or if nothing is specified or parameters are omitted, all tots for the location will be returned <b>Rate limit: </b><span style="background-color:#0272d9;color:white;padding:4px 8px;text-align:center;border-radius:5px; font-size: small;"><b>150</b></span> / minute

post/api/Locations/GetWarehouseTOTEs

Request body

LocationIdstring uuid

Location Id of the TOTs

ToteBarcodestring

(Optional) Barcode of the TOT. If provided the response will contain one record that matches exactly to the TotBarcode or returns an empty response if nothing is found. If not provided, empty string or null and TotId is null or not specified all TOTs for the warehouse will be returned.

TotIdinteger

(Optional) Id of the TOT, if specified TotBarcode is ignored. If null and TotBarcode not specified then returns all tots in the warehouse

Example request

{
  "LocationId": "00000000-0000-0000-0000-000000000000"
}

Response

OK

Example response

{
  "Totes": [
    {
      "LocationId": "00000000-0000-0000-0000-000000000000"
    }
  ]
}