object TotePick

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

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

skuString

SKU. SKU matching is case-insensitive and ignores surrounding whitespace.

created_atISODateTime

Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

updated_atISODateTime

Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

tote_idString

Public API tote ID that identifies the related record.

currentInt

Current as a numeric value.

picked_quantityInt

Picked quantity as a whole-unit count.

quantityInt

Quantity as a whole-unit count.

inventory_binString

Inventory bin for this tote pick.

line_itemLineItem

Line item associated with this tote pick.

locationLocation

Location for this tote pick.

deductedBoolean

Whether the picked quantity has been deducted from inventory.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "sku": "BLUE-TEE-M",
  "created_at": "2026-07-09T15:30:00Z",
  "updated_at": "2026-07-09T15:30:00Z",
  "tote_id": "VG90ZToxMjM0",
  "current": 100,
  "picked_quantity": 2,
  "quantity": 2,
  "inventory_bin": "A01-01-01",
  "line_item": {sku: "BLUE-TEE-M", quantity: 2},
  "location": {id: "TG9jYXRpb246MTIzNA==", name: "A01-01-01"},
  "deducted": true
}