Skip to content

Price drop notifications

This page covers how price drop notifications work and how you can set up and use them. With a combination of price drop notifications through Braze catalogs and a Canvas, you can notify customers when an item’s price has decreased.

How it works

When a user triggers a custom event for an item, we’ll automatically subscribe them to receive price drop notifications for that item. When the item’s price meets your inventory rule (such as a drop larger than 50%), all subscribers will be eligible for notifications through a campaign or Canvas. However, only users who opted into notifications will receive notifications.

Setting a custom event for price drop notifications

You’ll set up a custom event to use as a subscription event, such as a product_clicked event. This event must contain a property of the item ID (catalog item IDs). We recommend including a catalog name, but this isn’t required. You’ll also provide the name of a price field, which must be a number data type.

You can create a price drop subscription for a user and a catalog item when the following occurs:

  • A selected custom event is performed by a user
  • The custom event has a type property that includes price_drop (type must be an array)

To set both price-drop and back-in-stock notifications in the same event, you can use the type property, which must be an array. When an item has a price change that meets your price rule, we’ll look up all your users who are subscribed to that item (users who did the subscription event) and send a Braze custom event that you can use to trigger a campaign or Canvas.

The event properties are sent alongside your user, so you can template in the item details into the campaign or Canvas that sends.

Setting up price drop notifications

Follow these steps to set up price drop notifications in a specific catalog.

  1. Go to your catalog and select the Settings tab.
  2. Select the Price Drop toggle.
  3. If the global catalog settings have not been configured, you’ll be prompted to set up the custom events and properties that will be used to trigger notifications.

    Catalog settings drawer.

Here’s an example custom event:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "events": [
        {
            "external_id": "<external_id>",
            "name": "subscription",
            "time": "2024-04-15T19:22:28Z",
            "properties": {
                "id": "shirt-xl",
                "catalog_name": "on_sale_products",
                "type": ["price_drop", "back_in_stock"]
            }
        }
    ]
}
  1. Select Save, and continue to the next section to set up notification rules.

Setting up notification rules

  1. Go to your catalog’s Settings page.
  2. For Notification rules, select from the following options:

    • Notify all subscribed users: Notify all customers who are waiting when the item’s price drops.
    • Set notification limits: Notify a specified number of customers per your configured notification period. Braze will notify the specified numbers of customers in increments until there are no more customers to notify, or until the item’s price goes back up. Your notification rate cannot exceed notifying 10,000 users per minute.
  3. Set the Price field in catalog. This is the catalog field that will be used to determine the item’s price. It must be a number type.
  4. Set the Price drop rule. This is the logic used to determine if a notification should be sent. A price drop can be configured as a percentage price change or by the change in value for the price field.
  5. Select Save settings.

Catalog settings that show the price drop feature turned on. The price drop rule is a change of three percent to the original price.

Using price drop notifications in a Canvas

After setting up the price drop notifications in a catalog, follow these steps to use these notifications for a Canvas.

  1. Set up an action-based Canvas.
  2. Select Perform Price Drop Event as the trigger.
  3. Select the name of the catalog with the price drop notifications.
  4. Continue setting up your Canvas as you would.

Now, your customers will be notified when an item’s price drops.

Using Liquid

To template in details about the catalog item that has dropped in price, you can use the canvas_entry_properties Liquid tag to access the item_id.

Using {{canvas_entry_properties.${catalog_update}.item_id}} will return the ID of the item that dropped in price. {{canvas_entry_properties.${catalog_update}.previous_value}} will return the price value of the item before the update, and {{canvas_entry_properties.${catalog_update}.new_value}} will return the new price value after the update.

Use this Liquid tag {% catalog_items <name_of_your_catalog> {{canvas_entry_properties.${catalog_update}.item_id}} %}} at the top of your message, then use {{items[0].<field_name>}} to access data about that item throughout the message.

Considerations

  • Users are subscribed for 90 days. If an item does not drop in price in 90 days, the user is removed from the subscription.
  • When using the Notify all subscribed users notification rule, Braze will notify 100,000 users over 10 minutes.
  • Braze will process 10 requests to update catalog items per minute. Update endpoints allow for 50 item updates per request.
HOW HELPFUL WAS THIS PAGE?
New Stuff!