Query Inventory History Events
Fetches inventory movement events that change on-hand quantities within the ShipBob network. Returns events such as receiving/stow, order picks, adjustments, restocks, and attribute updates. Filter by inventory IDs, event category, date range, and facility. Supports cursor-based pagination for large result sets.
Authentication
AuthorizationBearer
Authentication using Personal Access Token (PAT) token
OR
AuthorizationBearer
OAuth2 authentication using JWT tokens
Query parameters
cursor
Request
This endpoint expects an object.
cursor
Optional. Pagination cursor using the inventory_audit_event_id from the previous response. Returns events after this ID.
end_date
Optional. End date for filtering events. If omitted, defaults to current date.
event_category
Optional. Filter by event type: OrderPicked, InventoryAdjusted, InventoryFacilityUpdated, AttributeUpdated, InventoryReceived, InventoryRestocked, ReceivingStow, or KittingStow.
facility_id
Required. The ShipBob fulfillment center ID where the inventory events occurred.
inventory_ids
Optional. Filter by specific inventory IDs. Returns events for these inventories only.
merchant_user_id
Optional. Filter by merchant user ID. Returns events associated with this user.
start_date
Optional. Start date for filtering events. If omitted, defaults to 90 days ago. Maximum range is 90 days.
Response
OK
data
Array of inventory history events matching the query criteria.
first
URL to retrieve the first page of results.
last
URL to retrieve the last page of results.
next
URL to retrieve the next page of results. Null if no more results available.
prev
URL to retrieve the previous page of results. Null if on the first page.

