API Reference

This webhook payload is used to directly update the pricing information, catering to different pricing standards such as MAP (Minimum Advertised Price), MSRP (Manufacturer's Suggested Retail Price), and UMRP (Unilateral Minimum Resale Price). The updates are dynamic and depend on the specific pricing attribute being modified.

Payload Details

  • 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.

MAP (Minimum advertised price)

Event Sent

 {
    "type" : "pricing_update",
    "action_date" : "2024-06-06 11:11:11 UTC-6:00",
    "payload" : [
      {
        "id" : 1245,
        "sku" : "SKU99999",
        "map": "1299.00",
      }
  ]
}

Payload Details

NameTypeDefinition
idnumberThe unique identifier of the product.
skustringThe stock keeping unit (SKU) associated with the product.
mapstringThe minimum advertised price of the product.

MSRP (Manufacturer’s suggested retail price)

Event Sent

 {
    "type" : "pricing_update",
    "action_date" : "2024-06-06 11:11:11 UTC-6:00",
    "payload" : [
      {
        "id" : 1245,
        "sku" : “SKU99999",
        "msrp": "1899.00",
      }
  ]
}

Payload Details

NameTypeDefinition
idnumberThe unique identifier of the product.
skustringThe stock keeping unit (SKU) associated with the product.
msrpstringThe manufacturer’s suggested retail price of the product.

UMRP (Unilateral Minimum Resale Price)

Event Sent

 {
    "type" : "pricing_update",
    "action_date" : "2024-06-06 11:11:11 UTC-6:00",
    "payload" : [
      {
        "id" : 1245,
        "sku" : “SKU99999",
        "umrp": "899.00",
      }
  ]
}

Payload Details

NameTypeDefinition
idnumberThe unique identifier of the product.
skustringThe stock keeping unit (SKU) associated with the product.
umrpstringThe unilateral minimum resale price of the product.