- type: Specifies the type of event, here pricing_update.
- action_date: The date and time when the pricing update was made, formatted as YYYY-MM-DD HH:MM:SS UTC-X:00.
- payload: An array that contains detailed information about the product and its updated price. The contents of the payload will vary depending on the type of price being updated.
{
"type" : "pricing_update",
"action_date" : "2024-06-06 11:11:11 UTC-6:00",
"payload" : [
{
"id" : 1245,
"sku" : "SKU99999",
"map": "1299.00",
}
]
}
Name | Type | Definition |
---|
id | number | The unique identifier of the product. |
sku | string | The stock keeping unit (SKU) associated with the product. |
map | string | The minimum advertised price of the product. |
{
"type" : "pricing_update",
"action_date" : "2024-06-06 11:11:11 UTC-6:00",
"payload" : [
{
"id" : 1245,
"sku" : “SKU99999",
"msrp": "1899.00",
}
]
}
Name | Type | Definition |
---|
id | number | The unique identifier of the product. |
sku | string | The stock keeping unit (SKU) associated with the product. |
msrp | string | The manufacturer’s suggested retail price of the product. |
{
"type" : "pricing_update",
"action_date" : "2024-06-06 11:11:11 UTC-6:00",
"payload" : [
{
"id" : 1245,
"sku" : “SKU99999",
"umrp": "899.00",
}
]
}
Name | Type | Definition |
---|
id | number | The unique identifier of the product. |
sku | string | The stock keeping unit (SKU) associated with the product. |
umrp | string | The unilateral minimum resale price of the product. |