Inventory OOS event

The Inventory OOS event notifies you when an item goes out of stock. When this event occurs, Walmart sends a notification to your destination URL. The notification includes a payload with item and inventory details.

Event details

  • Event type: INVENTORY_OOS
  • Event version: V1
  • Resource name: INVENTORY

Response parameters

The notification includes the following fields:

NameDescriptionType
sourceMetadata about the eventObject
eventTypeEvent for which the notification is receivedString
eventTimeTimestamp of when the event occurredString
eventIdUnique identifier for the eventString
payloadEvent-specific detailsObject
partnerIdSeller’s partner IDString
itemIdA unique identifier for the itemString
skuStock Keeping Unit - Unique identifier which identifies the itemString
productNameName of the itemString
categoryCategory of the itemString
shipNodesList of ship node detailsList
availToSellQtyQuantity available to sellInteger
shipNodeUnique identifier for the ship nodeString
shipNodeNameName of the ship nodeString

Sample payload 1: Inventory OOS

{ "source": { "eventType": "INVENTORY_OOS", "eventTime": "2021-03-31T06:39:54.726Z", "eventId": "e734a060-91eb-11eb-8024-dbd12dd659ed" }, "payload": { "partnerId": "123633591", "itemId": "286687472", "sku": "PORA-L500-Light-Stone-L", "productName": "Port Authority Women's Polo", "category": "Clothing, Shoes & Accessories", "shipNodes": [ { "availToSellQty": 0, "shipNode": "633591", "shipNodeName": "633591@PORA-L500-Light-Stone-L@ACTIVE" } ] }
}