- Page
- Variation
- Desktop/Mobile
- Timestamp
- IP Address
- Referral Source
- Ad Campaign (Available for Convert accounts only)
- Average Cost per Visitor (Available for Convert accounts only)
What’s a WebHook?
A WebHook is a push notification from our server to yours. The Form Submit WebHook lets you set up a push notification to your server every time someone submits a form on one of your Instapage pages.
What can you do with a WebHook?
WebHooks make it easier to integrate two systems. The most common use for our Form Submit WebHook is to feed leads into your CRM.
What do you need?
Some CRMs will offer something called "an endpoint URL" which you can use to integrate with, which requires no technical knowledge and is very easy to set up.
Configure the Webhook
1. While in the Landing Pages list, click on the name of the desired page and select Integrations > Form Integrations:
2. Select an already connected Webhook endpoint URL. If you don't have one, you will see the message below. In that case, go to connect a new one in the main Integrations dashboard by selecting the workspace you want, Settings, then clicking Integrations.
3. Enter your endpoint URL. This step is done once per workspace.
When you have connected the endpoint, come back to the slideout menu for the page you want to integrate with Webhooks and continue with the steps below.
4. Connect the Webhook to the page. Enter your server's token authorization key (also known as bearer authentication) if you have one.
This will add your token authorization key in the header of the webhook request as an Authorization header.
If this method is not available for you, and instead you need to whitelist IPs, you can find our list here: https://d.pr/nGODXv.
5. Select the sending method and click Continue;
6. Now you will need to map your Instapage form fields to your Webhooks fields;
If you map an Instapage field with a field from your CRM side that has predefined options/values, then the field from Instapage side must have those exact same predefined options/values, and it is recommended for the fields from both sides to be of the same type.
7. You can also capture more information about your visitors and send it to your list. Just make sure to match your fields accordingly.
Then click on CLOSE.
In order for the changes to save on the page, you still need to update the experience. So after clicking on CLOSE, head back to the first-page slide-out to UPDATE the page experience.
! After completing/saving an integration, hit the orange Update button for the page so that the changes go live.
If you want to integrate using Webhooks with your own custom server instead of an online lead management system you will have to write code to accept your form data.
Every time someone makes a new form submission on your page, Instapage will send the following data to your selected URL.
Parameter | Description |
---|---|
ip | Ip of visitor. |
page_id | The identifier Instapage uses to uniquely identify your page. |
page_name | The name you gave your page, for example “My Guaranteed to Convert Landing Page”. |
page_url | The URL of the page that contains your form. |
variant | This identifies the page variant that the visitor saw when they visited your page, and will be a lower-case letter. The first variant is “a”, the next, “b”, and so on. If you have more than 26 variants the sequence will continue with “aa”, “ab”, etc. |
Sample PHP Script
Keep in mind the following particularities that our webhook integration has:
- Webhook domains that point to localhost addresses cannot work with our system,
- When Instapage makes the webhook call, it will send the lead data as a single object data set. If your system only accepts a list of objects data set, then the leads from Instapage will not be accepted by them.
- The server that is handling the Webhook endpoint URL needs to have a response time of maximum 20 seconds for processing webhook calls. Otherwise, the form "thank you message" or the redirect will not work and it may even affect the integration.
Important Notes:
- The integration only works on the live URL. It can not be tested on the preview mode. When testing on the live URL, make sure that your browser is not displaying an older cached version.
- Always make sure to update the page experience when changing or adding a new Webhook endpoint.
- Make sure to test the integration with different addresses because if you submit the form multiple times with the same email address the integration will flag the email as spam.
- Always test your integration with real email addresses as some systems recognize fake emails.
- All fields need to have a label/name in order for the integration to work. Please do not leave the label empty or with just space characters. You can pick the 'hide label' option for some field types.