object Tote

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

nameString

Human-readable name for this tote.

barcodeString

Barcode value for the tote.

barcode_pdfString

Barcode pdf for this tote.

barcode_imageString

Barcode image for this tote.

colorString

Color for this tote.

color_nameString

Color name for this tote.

last_activityISODateTime

Last activity as an ISO-8601 datetime, returned in UTC unless otherwise noted.

picked_quantityInt

Picked quantity as a whole-unit count.

warehouseWarehouse

Warehouse display value or nested warehouse object for this record. Use warehouse_id when passing a warehouse reference.

orders[Order]

List of orders for this tote.

picks[TotePick]

List of picks for this tote.

statusString

Can either be 'Empty', 'Stocked', or 'In Hospital'.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "name": "TOTE-001",
  "barcode": "TOTE-001",
  "barcode_pdf": "TOTE-001",
  "barcode_image": "TOTE-001",
  "color": "blue",
  "color_name": "blue",
  "last_activity": "2026-07-09T15:30:00Z",
  "picked_quantity": 2,
  "warehouse": {id: "V2FyZWhvdXNlOjEyMzQ=", identifier: "Primary Warehouse"},
  "orders": [[{id: "T3JkZXI6MTIzNA==", order_number: "SO-100045"}]],
  "picks": [[{id: "VG90ZVBpY2s6MTIzNA=="}]],
  "status": "pending"
}