All Collections
Integrations
Using FormSync with Sumo Integration
Using FormSync with Sumo Integration
Michael Batalha avatar
Written by Michael Batalha
Updated over a week ago

In order to sync with Formsync you will first need to create a form in Emercury. 

Once your form is created you will need to view form code. Go to Assets - Forms
Look for your form and then choose the Form Code link to view the form code. 

Once you click the Form Code link you will see 3 options for Form Code.
We will be working with the HTML form code in this case. 

There are only 3 Things you will need to collect from here. 

Collect the form name and id. This is in the first line and may look like this
name="your_form_name_here"
id="your_form_name_here"

You will also want to collect the fid value. This should be a number. 4 or more digits long. It is also attached to the end of your form name. 

Next you will need to go through the form code and look for the fields you created and jot down the field names.
Ie. name="field_12345" for the field First Name.
Do this for all fields. 

Your email field name should be field_1

Once done you will be plugging the information you collected and pasting into this template

<form action="https://panel.emercury.net/form_handler1.php" method="post" name="you_form_name_here12345" id="your_form_name_here12345" target="sumo-hidden-magic">
    <input id="fid" type="hidden" name="fid" value="12345" />
    <input type="hidden" name="action" value="add_contacts" />
    <input type="hidden" name="contactnum" value="1" />
    <input type="text" name="field_12345" style=" border-radius:4px; border: 1px solid #D1D1D1; height: 30px; margin: 4px 0px; padding: 3px;">
    <input type="text" name="field_1" style=" border-radius:4px; border: 1px solid #D1D1D1; height: 30px; margin: 4px 0px; padding: 3px;">
    <input type="submit" style=" border-radius:4px; border: 1px solid #D1D1D1; height: 30px; padding: 3px; background-color: #FFFFFF;background-color:hsv(0, 0%, 0%);color:hsv(0, 0%, 0%);" value="Submit Form" />
    <iframe id="sumo-hidden-magic" name="sumo-hidden-magic" style="width:0;height:0;border:0;border:none;"></iframe>
</form>

I've replaced fid with 12345 and Ive replaced the form name with your_form_name_here12345 and I also replaced the first name field id with 12345. 

You of course would use the information you collected. 

Inside Sumo you will need to make sure the First Name field ID matches with the field id you are using in Emercury. 

Test your form and you should see the email address added to the view emails area of your form settings

Also check your list to see if it was added. 

Note: if the email address is already on the list but not in your "view emails" it will not add to your "view emails" setting. 


Did this answer your question?