object TotePick
Fields
| Field | Type | Description |
|---|---|---|
id | String | Public API ID for this identifiable. |
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. |
sku | String | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
created_at | ISODateTime | Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
updated_at | ISODateTime | Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
tote_id | String | Public API tote ID that identifies the related record. |
current | Int | Current as a numeric value. |
picked_quantity | Int | Picked quantity as a whole-unit count. |
quantity | Int | Quantity as a whole-unit count. |
inventory_bin | String | Inventory bin for this tote pick. |
line_item | LineItem | Line item associated with this tote pick. |
location | Location | Location for this tote pick. |
deducted | Boolean | 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
}