When passing Revv data to your Iterable account, it's important to note that Iterable doesn’t automatically append petition page submissions to the user’s profile.
Instead, Iterable creates a custom event. To add this to a user profile. you will need to use an Iterable Workflow. Here's a quick guide on how to do that.
Step 1: Create a Workflow
Set the workflow trigger to "Triggered Custom Event." Add petition.signed in the box beneath it.
Step 2: Create a "Perform Action" node
Add a "Perform Action" node to the workflow. Head into the node and select "Change Contact Field" from the drop-down menu. Next, add the code to match Revv fields to Iterable fields.
Here's an example of what it should look like:
Green text fields are whats coming in from Revv. You can find the exact names in the custom event itself.
Blue text fields are where you want to store that data on the user's profile.
Let's say I want to write the petition info in my first name field that I created as “FirstName”. The code would be {“FirstName”:”{{first_name}}”}.
You’ll need to separate each field with commas and make sure that a set of {} append each end of the code. An example would be:
{“FirstName”:”{{first_name}}”,”LastName”:”{{last_name}}”,”PhoneNumber”:”{{number}}”}
Because Iterable is a separate platform, please refer to their help docs for any further help as they are always updating their platform.