Activating the integration
You connect BlueBarry via a secure OAuth connection. No API keys are required. Follow these steps:
In Reloadify, go to Settings.
Select Integrations and then Data sources.
Click Connect next to BlueBarry.
Follow the steps in the pop-up window to authorize the connection.
Upon completing these steps, Reloadify automatically registers a webhook that forwards quiz events.
What is synchronized?
As soon as a visitor completes a BlueBarry quiz, you receive the following data in their customer profile:
Quiz answers: These are saved as profile attributes, recognizable by the prefix
BlueBarry β.Product recommendations: This includes details such as the title, URL, position, and the timestamp of the recommendation.
Segmenting based on quiz data
Use the data from the quiz to create segments:
Quiz answers: These are automatically found under the Custom filter group. No extra configuration is required.
Product recommendations: Use the BlueBarry quiz recommendation filter. Here, you can filter for customers who have received at least one recommendation or recommendations in the past 30 days.
Personalizing emails
Use Liquid to process the collected data directly in your email design.
Use the following Liquid in your email:
Codefragment
{{ profile.eav_bluebarry_example_property }}Displaying product recommendations dynamically
Use a Liquid loop to place the recommendations in your email:
Codefragment
{% for rec in profile.bluebarry_recommendations %} <a href="{{ rec.url }}"> <img src="{{ rec.image_url }}" alt="{{ rec.title }}"> <h3>{{ rec.title }}</h3> </a> {% endfor %}