Buy Box changed event

The Buy Box Changed event notifies you when the Buy Box winner or winning price changes for your published items, if at least one offer exists for the item.

When this event occurs, Walmart sends a notification to your destination URL. The notification includes a payload with detailed information about the item, your offer, and the Buy Box winner.

Event details

  • Event Type: BUY_BOX_CHANGED
  • Event Version: V1
  • Resource Name: PRICE

Response parameters

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
itemInfoItem informationObject
itemIdA unique identifier for the itemString
itemNameName of the itemString
categoryCategory of the itemString
productTypeProduct type of the itemString
brandBrand nameString
skuStock Keeping Unit - Unique identifier which identifies the itemString
totalNumberOfOffersTotal number of offers from all sellersInteger
offerOffer detailsObject
currentOfferSeller’s current offer informationObject
sellerNameSeller’s nameString
sellerOfferPriceSeller’s offer price on the itemDouble
sellerShippingSpeedSeller’s shipping speed on the itemString
sellerShippingPriceSeller’s shipping price on the itemDouble
winningOfferBuy Box winning offer informationObject
sellerNameBuy Box winning seller’s nameString
sellerOfferPriceBuy Box winning seller’s offer price on the itemDouble
sellerShippingSpeedBuy Box winning seller’s shipping speed on the itemString
sellerShippingPriceBuy Box winning seller’s shipping price on the itemDouble
priceDifferenceDifference between seller's offer price and the Buy Box winning priceDouble

Sample payload: Buy Box changed

{ "source": { "eventType": "BUY_BOX_CHANGED", "eventTime": "2020-07-03T14:12:42.913Z", "eventId": "42c2b910-bd37-11ea-89f1-4f3bd9e0e3af" }, "payload": { "partnerId": "12300001205", "itemInfo": { "itemId": "50655131", "itemName": "Sizzix SBarnard Thinlits Die Drop In Thank You", "category": "Crafts", "productType": "Die-Cut Cartridges", "brand": "Sizzix", "sku": "NMG300868", "totalNumberOfOffers": 33 }, "offer": { "currentOffer": { "sellerName": "CB&WS goods", "sellerOfferPrice": 13.03, "sellerShippingSpeed": "STANDARD", "sellerShippingPrice": 8.99 }, "winningOffer": { "sellerName": "Save you Stores", "sellerOfferPrice": 16.25, "sellerShippingSpeed": "EXPEDITED", "sellerShippingPrice": 0 }, "priceDifference": -3.22 } }
}