Predict the timing of repeat purchases

Published October 04, 2022
Modules
Difficulty
Selected Clients
carrefour logo

Recurring purchases are those purchases that are usually made with some frequency and regularity, such as the purchase of coffee, printer paper, hygiene products, etc. Products purchased on a regular basis fill the greater part of most customers’ shopping baskets. That’s why it’s so important to provide customers with the best experience when making such purchases, reminding them of an upcoming purchase and encouraging them to return more often for these products in your store.

The prediction created in this case is based entirely on analytics and calculates the average time between purchases for customers who have made at least three transactions in a given category, so we can calculate when a customer may make the next purchase, anticipating their intention by sending them an email reminder of the upcoming purchase. The described process consists of two automations, where one calculates the average interval between purchases and the other sends an email to the customer at the appropriate time.

Communication for customers making repetitive coffee purchases

Prerequisites


Tip: We recommend including an insert in the email template with a product recommendation from the specific category to make the buying decision process easier for customers. You can refer to this use case to see how to build recommendations filtered to the product category.

Process


  1. Create an event expression that converts the time of transaction to a number.
  2. Create an aggregate that returns the timestamps of the purchased products from the specific category.
  3. Create a workflow that calculates the average number of days between a customer’s purchases of a product in a specific category and calculates the date of the next purchase based on that number.
  4. Create a workflow that is responsible for sending a reminder to a customer about the next recurring purchase.

Create an expression


In this part of the process, you need to create an event expression that converts the timestamp of transaction to a number. This expression will be used later to create an aggregate.

  1. Go to Profiles icon Analytics > Expression > New expression.
  2. Enter the name of the expression.
  3. Set the Expression for option to Event.
  4. From the drop-down list, select product.buy.
  5. In the Formula definition section, click Select.
  6. From the list that opens, select Function > To number.
  7. In the brackets, click the Select button and from the list, select Event attribute.
  8. Click the Unnamed node that appeared.
  9. At the bottom of the page, click Choose parameter.
  10. In the list of attributes, find and select TIMESTAMP.
  11. Save the expression.
An expression that converts the timestamp to a number
An expression that converts the timestamp to a number

Create an aggregate


In this part of the process, you create a dynamic aggregate that returns timestamps of purchases from a specific category. The aggregate will return timestamps (as numbers) from product.buy events.

  1. Go to Analytics > Aggregates > New aggregate.
  2. Enter a meaningful name of the aggregate.
  3. As the aggregate type, select Last Multi and size 15.
    Note: This is the maximum number of a customer’s past transactions to be used in the calculation. You can change the number according to your business needs.
  4. Select Consider only distinct occurences of the event parameter.
  5. Select the product.buy event.
  6. From the Choose event drop-down list, select the expression you created in the previous step.
  7. Click the + where button and from the Choose parameter drop-down menu, choose category.
  8. From the Choose operator drop-down, choose Equal.
  9. Enter the name of the product category.
    In our example, it’s coffee.
  10. Define the time range as Last 365 days.
  11. Confirm by clicking Apply.
The final configuration of the aggregate
The final configuration of an aggregate

Create a workflow to predict purchase time


You need to create a workflow that calculates the average number of days between a customer’s purchases from a given category. The result is used to calculate the customer’s next purchase probability.

  1. Go to Automation > Workflows > New workflow.
  2. Enter the name of the workflow.

Define the Profile Event trigger node

At this stage you will configure the conditions that will trigger the workflow. As a trigger, you will use the product.buy event for the coffee category.

  1. As the first node of the workflow, add Profile Event. In the configuration of the node:
    1. From the Choose event drop-down menu, choose the product.buy event.
    2. Click the + where button and from the Choose parameter drop-down menu, choose category.
    3. From the Choose operator drop-down, choose Equal.
    4. Enter the name of the product category for which you want to predict the time of the customer’s next purchase.
      In our case, it’s coffee.
    5. Confirm by clicking Apply.

Define the Profile Filter node

In this part of the process, you need to identify customers for whom the workflow calculates the date of next purchase. It takes into consideration customers who have made at least three separate transactions (transaction.charge event) with products from the “coffee” category.

  1. Add the Profile Filter node.
  2. Click the node to open its settings.
  3. Click the Choose filter button and choose the product.buy event.
  4. Click the + where button and from the Choose parameter drop-down menu, choose category.
  5. From the Choose operator drop-down, choose Equal.
  6. Enter the name of the product category for which you want to predict the time of the customer’s next purchase.
    In our case it’s coffee.
  7. Click + Add funnel step button and repeat steps 3-6.
  8. Set the time range to Last 365 days before 1 days.
  9. Click the Choose filter button and choose the transaction.charge event.
  10. Click + Add funnel step button and another transaction.charge event.
  11. Set the time range to Last 365 days before 1 days.
  12. Confirm by clicking Apply.
  13. For the Not matched path, add the End node.
The Profile Filter node configuration
The Profile Filter node configuration

Define the Generate event node

At this stage, an event is generated on the customer’s profile, returning the number of days between purchases and the date when the customer may make the next purchase. It contains the following parameters:

  • category - the category of products for which the calculation is made,
  • itemId - the ID of last product bought from the specific category,
  • predictedTime - calculated date of the next purchase from the specific category,
  • predictedTimeInDays - average number of days between purchases from the specific category.
  1. To the Matched path of the Profile filter node created earlier, add a Generate event node. In the configuration of the node:
    1. In the Event name, enter the name of the event that will be generated on the customer’s profile. In this case, it is product.purchasePredictedTime
    2. The Label field exists for backwards compatibility. If your integration does not require this parameter, skip it.
    3. Add the JSON body of the event. You can use the example below.
      Example jinjava code

      {
        "category": "coffee",
        "itemId": "{{ event.params.$sku }}",
        "predictedTime": "{% set avgTime = [] %}{% aggregate PASTE_AGGREGATE_ID_HERE %}{%set timeDiff = []%}{% for item in range(aggregate_result|length-1) %}{%set diff = aggregate_result[loop.index] - aggregate_result[loop.index-1]%}{% do timeDiff.append(diff)%}{% endfor %}{% set temp = timeDiff|sum/(aggregate_result|length-1) %}{% do avgTime.append(temp) %}{{ datetimeformat(unixtimestamp(null) + avgTime[0], '%Y-%m-%d') }}{% endaggregate %}",
        "predictedTimeInDays": "{{avgTime[0]/86400000}}"
      }


      Note: The above jinjava code contains the logic of calculating the average number of days between purchases from the specific category and calculating the date of a next purchase. It can be copied 1:1 into the Generate event node. However, remember to replace the ID of aggregate in this code with the ID of the aggregate created earlier in the process.
    4. Confirm by clicking Apply.
Configuration of the Generate event node
Configuration of the Generate event node

Example of a generated product.purchasePredictedTime event:

Example of a generated event
Example of a generated event

Add final settings to your workflow

  1. Add the End node.
  2. Launch the workflow by clicking Save & Run.
Configuration of the workflow
Configuration of the workflow

Create a workflow to encourage a purchase


With the above workflow in place, you can create another workflow in which you send a message reminding the customer of the next purchase. This workflow starts each day for a group of customers whose expected purchase date is the current day.

  1. Go to Automation > Workflows > New workflow.
  2. Enter the name of the workflow.

Define the Audience node

In this stage, you create an Audience that checks for the presence of the product.purchasePredictedTime event on a user’s card in the last 30 days with a specific product category (in our case, coffee), where the predicted purchase date is on the current day. In addition, the Audience filter includes only those customers who have agreed to receive communications.

  1. Start the workflow with the Audience node and open the node’s settings.
  2. In Define audience, choose New Audience and click Define conditions.
  3. From the Choose filter drop-down menu, choose the product.purchasePredictedTime event.
  4. Click the + where button and from the Choose parameter drop-down menu, choose predictedTime.
  5. From the Choose operator drop-down menu, select Date > Current date > Matches current day.
  6. Click the + where button and from the Choose parameter drop-down menu, choose predictedTime.
  7. From the Choose operator drop-down menu, select Date > Current date > Matches current month.
  8. Click the + where button and from the Choose parameter drop-down menu, choose predictedTime.
  9. From the Choose operator drop-down menu, select Date > Current date > Matches current year.
  10. Click the + where button and from the Choose parameter drop-down menu, choose category.
  11. From the Choose operator drop-down, choose Equal.
  12. Type the name of the product category - coffee.
  13. Define the time range to the Last 30 days.
  14. From the Choose filter drop-down, choose the newsletter_agreement parameter.
  15. From the Choose operator drop-down, choose Equal and and specify the condition as enabled.
  16. Confirm by clicking Apply.
Configuration of the Audience node
Configuration of the Audience node

Define the Send Email node

In this step, choose an email template for the upcoming purchase.

  1. To the Matched path, add the Send Email node and open its settings.
  2. In the Sender details section, choose the email account from which the email is sent.
  3. In the Content section, select the template that you prepared as a part of the prerequisites.
  4. Optional: In the UTM & URL parameters section, define the UTM parameters added to the links included in the email.
  5. In the Additional parameters section, optionally describe campaigns with additional parameters.
  6. Click Apply.

Add final settings to your workflow

  1. Add the End node.
  2. Launch the workflow by clicking Save & Run.
Configuration of the workflow
Configuration of the workflow

Check the use case set up on the Synerise Demo workspace


You can check the configuration of each step directly in the Synerise Demo workspace:

Create an expression

Create an aggregate

Create a workflow for purchasing time calculations

Create a workflow for sending a mailing communication

If you don’t have access to the Synerise Demo workspace, please leave your contact details in this form, and our representative will contact you shortly.

Read more


😕

We are sorry to hear that

Thank you for helping improve out documentation. If you need help or have any questions, please consider contacting support.

😉

Awesome!

Thank you for helping improve out documentation. If you need help or have any questions, please consider contacting support.

Close modal icon Placeholder alt for modal to satisfy link checker