object InventoryChange
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | 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_id | String | |
account_id | String | |
warehouse_id | String | |
sku | String | |
previous_on_hand | Int | |
change_in_on_hand | Int | |
reason | String | |
cycle_counted | Boolean | |
location_id | String | |
lot_id | String | |
lot_name | String | |
lot_expiration | String | |
created_at | ISODateTime | |
product | Product | |
location | Location |
Referenced By
- InventoryChangeEdge Type
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
}