How to send interaction data to Spotler Activate (Squeezely)
Use the "V2 (legacy)" version of the documentation if the "V3 enabled" toggle is not enabled under "Settings -> Styling".
Connecting Qonfi to Spotler Activate (Squeezely) allows you to enrich your customer data with Qonfi interaction data. Enabling Spotler Activate (Squeezely) in Qonfi is easy.
Activating Spotler Activate
1. Go to ‘account’ in the top navigation.
2. In the Spotler Activate (Squeezely) section, click "Enable".
Events sent by Qonfi
Once Spotler Activate is enabled in Qonfi, Qonfi will start to send events to Spotler Activate.
Event: PageView
This event is sent whenever a user makes a choice. This event will automatically enrich your customer profile in Spotler Activate with the chosen answers by your user.
{
"event": "PageView",
"collections": {
"customer_settings": {
"qonfi_question_2": [
"Qonfi answer 1",
"Qonfi answer 2"
]
}
}
}
Event: qonfi_advice
Whenever an advice is given to the user. This event will be sent to Spotler Activate including the advised products.
{
"event": "qonfi_advice",
"custom_qonfi_app_id": "xxxx-xxxx-xxxx",
"custom_qonfi_app_name": "My selling guide",
"products": [{
"id": 1,
"name": "Product 1"
},{
"id": 2,
"name": "Product 2"
},{
"id": 3,
"name": "Product 3"
}]
}
Event: qonfi_mail_advice
Whenever user mails the advice to themselves using the "Advice e-mail feature", the qonfi_mail_advice event is fired. This event will be sent to Spotler Activate including the e-mail of the user and the advised products.
{
"event": "qonfi_mail_advice",
"custom_qonfi_app_id": "xxxx-xxxx-xxxx",
"custom_qonfi_app_name": "My selling guide",
"email": "[email protected]",
"products": [{
"id": 1,
"name": "Product 1"
},{
"id": 2,
"name": "Product 2"
},{
"id": 3,
"name": "Product 3"
}]
}
Event: EmailOptIn
Whenever user mails the advice to themselves using the "Advice e-mail feature" and the "Subscribe to our newsletter" checkbox is checked, the EmailOptIn event is fired. This event will be sent to Spotler Activate and enabled both the "marketing" and "newsletter" consent.
Please make sure you adjust the text under "Settings -> Results e-mail -> Text -> Email results newsletter optin text" to correctly reflect the given consent.
{
"event": "EmailOptIn",
"custom_qonfi_app_id": "xxxx-xxxx-xxxx",
"custom_qonfi_app_name": "My selling guide",
"email": "[email protected]",
"marketing": "yes",
"newsletter": "yes"
}
It can take up to 5 minutes before you see the new events popping up in the overview.
Documentation