Offer unpublished event
Offer unpublished event is when the seller’s offer moves from Published to Unpublished status.
When the event occurs, the seller will receive the response payload on the destination URL, as given in the samples.
- Event Type: OFFER_UNPUBLISHED
- Event Version: V1
- Resource Name: ITEM
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 |
sku | A unique ID which identifies the item | String |
publishStatus | Status of the item in the submission process | String |
lifecycleStatus | Status of the item in the overall lifecycle | String |
statusChangeReasons | Reason for the item to be unpublished. If there are multiple reasons for the item to be unpublished, all will be listed here. | Map<String,String> |
itemId | A unique ID that identifies the item. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | String |
itemName | Name of the item. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | String |
category | Category of the item. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | String |
totalNumberOfOffers | No. of offers on the item from all sellers. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | Integer |
sellerOfferPrice | Seller’s offer price on the item. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | Double |
sellerShippingPrice | Seller’s shipping price on the item. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | Double |
referencePrice | Reference price used for the offer to be unpublished. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | Double |
referencePriceURL | URL for the reference price. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | String |
referencePriceType | Source of the reference price. Received only if statusChangeReasons = REASONABLE_PRICE_NOT_SATISFIED | String |
Sample payload 1: Offer unpublished
{ "source": { "eventType": "OFFER_UNPUBLISHED", "eventTime": "2019-02-21T01:01:08.000Z", "eventId": "03d34580-61d4-11ea-9e23-cd38810ff7cd" }, "payload": { "partnerId": "12300014482", "sku": "83852627", "publishStatus": "UNPUBLISHED", "lifecycleStatus": "ACTIVE", "statusChangeReasons": { "SHIPPING_INFO_MISSING": "No shipping information was set up." } }
}
Sample payload 2: offer unpublished
{ "source": { "eventType": "OFFER_UNPUBLISHED", "eventTime": "2019-02-21T01:01:08.000Z", "eventId": "03d34580-61d4-11ea-9e23-cd38810ff7cd" }, "payload": { "partnerId": "12300014482", "sku": "9458276", "publishStatus": "UNPUBLISHED", "lifecycleStatus": "ACTIVE", "statusChangeReasons": { "REASONABLE_PRICE_NOT_SATISFIED": "Reasonable price requirements are not met" }, "itemId": "21125774", "itemName": "Pantene Pro-V Daily Moisture Renewal Shampoo, 12.6 fl oz", "category": "HAIR CARE", "totalNumberOfOffers": 28, "sellerOfferPrice": 11.72, "sellerShippingPrice": 0, "referencePrice": 9.47 }
}
Sample payload 3: Offer unpublished
{ "source": { "eventType": "OFFER_UNPUBLISHED", "eventTime": "2019-02-21T01:01:08.000Z", "eventId": "03d34580-61d4-11ea-9e23-cd38810ff7cd" }, "payload": { "partnerId": "12300014482", "sku": "83852627", "publishStatus": "UNPUBLISHED", "lifecycleStatus": "ACTIVE", "statusChangeReasons": { "REASONABLE_PRICE_NOT_SATISFIED": "Reasonable price requirements are not met" }, "itemId": "771087594", "itemName": "OVE Decors Lynton 36 in. Fruit Single Sink Bathroom Vanity with Tiger Granite Top", "category": "BATH AND LAUNDRY", "totalNumberOfOffers": 7, "sellerOfferPrice": 1049.95, "sellerShippingPrice": 0, "referencePrice": 680.59, "referencePriceURL": "https://www.amazon.com/dp/B07NPLPTYH?psc=1", "referencePriceType": "Amazon" }
}
Updated about 1 month ago