Connecting Other Forms
For customers using other forms not listed in the guide.
Immediately start capturing leads from your site, without the need for a Default form. Just use our handy JS snippet in your header tag to make sure we can start catching responses.
Installation - Send this to your engineer or designated website admin:
Copy the import snippet
Make sure you DO NOT click out of this modal during the import process. If you do, you will need to restart the process.

Add a snippet to the <head> tag on the designated website page.
Make sure you DO NOT click out of this modal during the import process. If you do, you will need to restart the process.
Submit a test response and confirm the fields

Now you are ready to configure workflows to process data from your form.
🚨 Note 🚨
Make sure every form on the page has the same
id
in the form element, else you will need to repeat this installation snippet for every new form you want to capture data from (note the righthand sidebar for both form elements on this example page).The
team_id
andform_id
(6 digits) must be present in the install script. These IDs are unique to each imported form and team - the below would have a different number forteam_id
and form_id custom to you.
<script>
(function(w, d) {
w.__default__ = {team_id: 000, form_id: 000000};
var s = d.createElement('script');
s.async = true;
s.src = 'https://import-cdn.default.com/v2/index.js';
d.head.appendChild(s);
})(window, document);
</script>
There is no need to embed a Default form on your website if you already have web forms as we capture the information using the script.
Last updated