Inventory OOS event
When the inventory OOS notification event occurs, the seller will receive the response payload at the destination URL, as shown in the sample payload.
This notification is triggered when an inventory is out of stock.
- Event Type: INVENTORY_OOS
- Event Version: V1
- Resource Name: INVENTORY
Response parameters
Name | Description | Type |
---|---|---|
source | Event meta information | Object |
eventType | Event for which the notification is received | String |
eventTime | Time at which the event occurs | String |
eventId | Unique ID of the event | String |
payload | Event details | Object |
partnerId | Seller’s Partner ID | String |
itemId | A unique ID that identifies the item | String |
sku | A unique ID that identifies the item | String |
productName | Name of the item | String |
category | The item category | String |
shipNodes | The shipNode details | List |
availToSellQty | The quantity available to sell. | Integer |
shipNode | The shipNode Id | String |
shipNodeName | The name of the shipNode | String |
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" } ] }
}
Updated about 1 month ago