object InventoryChange

Fields

FieldTypeDescription
idString
legacy_idInt

For customers that transitioned from static slotting to dynamic slotting, there can be multiple records with the same legacy_id, please use the id field instead

user_idString
account_idString
warehouse_idString
skuString
previous_on_handInt
change_in_on_handInt
reasonString
cycle_countedBoolean
location_idString
lot_idString
lot_nameString
lot_expirationString
created_atISODateTime
productProduct
locationLocation

Referenced By

Example

{
  "id": "abc123",
  "legacy_id": 987,
  "user_id": "abc123",
  "account_id": "abc123",
  "warehouse_id": "abc123",
  "sku": "abc123",
  "previous_on_hand": 987,
  "change_in_on_hand": 987,
  "reason": "abc123",
  "cycle_counted": true,
  "location_id": "abc123",
  "lot_id": "abc123",
  "lot_name": "abc123",
  "lot_expiration": "abc123",
  "created_at": "abc123",
  "product": Product,
  "location": Location
}