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": "lcp_update",
"action_date": "2025-02-12 01:14:07",
"payload": [
{
"sku": "GABC05FDKG",
"in_stock_status": 1,
"lap": {
"lowest_price": 1099.990000000000009094947017729282379150390625,
"lowes_price": 0,
"lowes_last_updated": null,
"homedepot_price": 1100,
"homedepot_last_updated": "2025-02-11 17:42:27",
"bestbuy_price": 1099.990000000000009094947017729282379150390625,
"bestbuy_last_updated": "2025-02-11 17:42:27",
"ajmadison_price": 0,
"ajmadison_last_updated": "2025-01-21 09:06:00"
},
"lcp": {
"lowest_price": 0,
"lowes_price": 0,
"lowes_last_updated": null,
"homedepot_price": 0,
"homedepot_last_updated": "2025-02-11 17:42:27",
"bestbuy_price": 0,
"bestbuy_last_updated": "2025-02-11 17:42:27",
"ajmadison_price": 0,
"ajmadison_last_updated": "2025-01-21 09:06:00"
}
}
]
}
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, Best Buy, and AJMadison.
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. |
ajmadison_price | string | The price source; ajmadison. |
ajmadison_last_updated | string | The timestamp of the last ajmadison price. |
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, Best Buy, and AJMadison.
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. |
ajmadison_price | string | The price source; ajmadison. |
ajmadison_last_updated | string | The timestamp of the last ajmadison price. |