object Pick

Fields

FieldTypeDescription
idString

Public API ID for this pick.

legacy_idBigInt

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

user_idString

Public API user ID that identifies the related record.

tote_idString

Public API tote ID that identifies the related record.

line_item_idString

Public API line item ID that identifies the related record.

pending_shipment_line_item_idString

Public API pending shipment line item ID that identifies the related record.

location_idString

Public API location ID that identifies the related record.

warehouse_idString

Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects.

order_idString

Public API order ID that identifies the related record.

order_numberString

Order number for this pick.

user_first_nameString

User first name for this pick.

user_last_nameString

User last name for this pick.

inventory_binString

Inventory bin for this pick.

skuString

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

quantityInt

The number required.

picked_quantityInt

The number that was picked.

pick_typeString

Pick type for this pick.

barcode_scannedString

Barcode scanned for this pick.

created_atISODateTime

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

line_itemLineItem

Line item associated with this pick.

orderOrder

Order associated with this pick.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "user_id": "VXNlcjoxMjM0",
  "tote_id": "VG90ZToxMjM0",
  "line_item_id": "TGluZUl0ZW06MTIzNA==",
  "pending_shipment_line_item_id": "TGluZUl0ZW06MTIzNA==",
  "location_id": "TG9jYXRpb246MTIzNA==",
  "warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
  "order_id": "T3JkZXI6MTIzNA==",
  "order_number": "SO-100045",
  "user_first_name": "Ada",
  "user_last_name": "Lovelace",
  "inventory_bin": "A01-01-01",
  "sku": "BLUE-TEE-M",
  "quantity": 2,
  "picked_quantity": 2,
  "pick_type": "single_item",
  "barcode_scanned": "012345678905",
  "created_at": "2026-07-09T15:30:00Z",
  "line_item": {sku: "BLUE-TEE-M", quantity: 2},
  "order": {id: "T3JkZXI6MTIzNA==", order_number: "SO-100045"}
}