This webhook payload is specifically designed for direct updates to the Lowest Cart Price (LCP) and Lowest Advertised Price (LAP) of products. It enables real-time synchronization of pricing data across different retail platforms, ensuring that the most competitive pricing information is readily available.
Event Sent
{
"type" : "lap_update",
"action_date" : "2024-06-06 11:11:11 UTC-6:00",
"payload" : [{
"sku" : “SKU99999",
"lcp_desc": "lcp/lap edit manual",
"in_stock_status": 1,
"lap": {
"lowes_price": null,
"lowes_last_updated": "2022-12-20 02:14:21",
"homedepot_price": null,
"homedepot_last_updated": "2022-12-20 02:14:21",
"bestbuy_price": null,
"bestbuy_last_updated": null,
"lowest_price": null
},
"lcp": {
"lowest_price": null,
"lowes_price": null,
"lowes_last_updated": null,
"homedepot_price": null,
"homedepot_last_updated": null,
"bestbuy_price": null,
"bestbuy_last_updated": null
}
}]
}
LAP
Lowest Advertised Price (LAP) is the lowest discounted price available from competitors on the product page.
Payload Details
- type: Identifies the type of event, in this case, lap_update.
- action_date: Timestamp indicating when the LAP update was made, formatted as YYYY-MM-DD HH:MM:SS UTC-X:00.
- payload: An array that contains the updated LAP along with comparative pricing data from major retailers such as Lowe's, Home Depot, and Best Buy.
Name | Type | Definition |
---|---|---|
sku | string | The stock keeping unit (SKU) associated with the product. |
lcp_desc | string | The description of price. |
in_stock_status | number | The active product status of lowest price product. |
lap | string | The lowest advertised price. |
lowes_price | string | The price from lowes. |
lowest_last_updated | string | The timestamp of the price update from lowes. |
homedepot_price | string | The price source; homedepot. |
homedepot_last_updated | string | The timestamp of the last homedepot price. |
bestbuy_price | string | The price source; bestbuy. |
bestbuy_last_updated | string | The timestamp of the last bestbuy price. |
lowest_price | string | The lowest price of the LAP. |
LCP
Lowest Cart Price (LCP) is the lowest discounted price displayed in the cart after users add the product.
Payload Details
- type: Identifies the type of event, in this case, lcp_update.
- action_date: Timestamp indicating when the LCP update was made, formatted as YYYY-MM-DD HH:MM:SS UTC-X:00.
- payload: An array that contains the updated LCP along with comparative pricing data from major retailers such as Lowe's, Home Depot, and Best Buy.
Name | Type | Definition |
---|---|---|
sku | string | The stock keeping unit (SKU) associated with the product. |
lcp | string | The lowest advertised price. |
lowest_price | string | The lowest price of the LCP. |
lowes_price | string | The price from lowes. |
lowest_last_updated | string | The timestamp of the price update from lowes. |
homedepot_price | string | The price source; homedepot. |
homedepot_last_updated | string | The timestamp of the last homedepot price. |
bestbuy_price | string | The price source; bestbuy. |
bestbuy_last_updated | string | The timestamp of the last bestbuy price. |