Collect WhatsApp subscribers and trigger a double opt-in flow to ensure GDPR compliance.
Create the opt-in request flow
Go to Audience > Lists & segments > Create List /Segment and build your double opt-in segment. We suggest the following:
Email: should contain @ as we want to ensure that the customer’s contact information is valid
Phone number: should contain + in the beginning to make sure it has a country code and is therefore valid for receiving WhatsApp messages
Properties about someone - charles_opt_in_status: should be false or not set, so that we only request opt-in from contacts that haven’t given their consent to receive WhatsApp message via charles already
Properties about someone - created: choose a date for profiles that are created after you have set up the flow, so that the double opt-in flow would only be triggered for newly created contacts
Go to Flows > Create flows
Select the Segment we created in step 2. as the trigger
Add a conditional split to make sure that only contacts where charles_opt_in_status is false or not set would receive the double opt-in request message to avoid spamming
Add a time delay of up to 2 minutes to avoid overwhelming the system
Add a Webhook Action
Build your flow and add Webhook action:
For example: try creating a double opt-in request to ensure GDPR compliance. See more here.
<aside> 🤔 If you’re not sure how the Webhook action works, check out the Klaviyo guide here.
</aside>
Configure the JSON payload with the information you wish to share from Klaviyo to charles
<aside> 🚨 The field "phone_number" is required and therefore needs to be included in the JSON payload.
</aside>
Click “View profile properties” to see what variable properties are available, including any custom properties you may have created.
By using double curly braces and the "event_properties" object, the JSON can dynamically retrieve the values of these properties from the event that triggers the flow in Klaviyo. In the "JSON Payload" section, enter the following code, replacing the variables with your data:
For example: {{ recent_purchase.product_name }} will pull in the name of the recent product purchased by your customer.
{
"phone_number": "{{ person.phone_number }}",
"message": "{{ event_properties.message }}",
"first_name": "{{ person.first_name }}"
}
<aside> 🚨 Make sure the JSON payload is copied exactly from Klaviyo to charles. Even a small difference will result in errors.
</aside>
Finally, follow these Opt-in flow overview steps to create the double opt-in within charles.