Add-Ons Manager Manual in Forms Builder

Add-Ons are small applications integrated to Forms Builder for sending data collected by forms to third-party applications or adding specific features to the application giving more powerful forms and valuable insights and data.

How To Access The Add-Ons Manager?

You simply click on the Add-ons button from the navigator and the list of available Add-Ons by the Admin will be presented to you.

1- The WebHooks Add-On

You can use the WebHooks Add-On to send data from your forms to any custom page or script you like. This page can perform integration tasks to transform, parse, manipulate and send your submission data to wherever you choose.

If you are developing an application that needs to be updated every time a form is submitted, WebHooks is for you. The advantage of WebHooks is that the passing of data is immediate and you can pass all submitted form data at once.

What’s a WebHook?

A WebHook is just a push notification from Forms Builder to another server every time someone submits your forms.

What can you do with a WebHook?

WebHooks makes easier to integrate two systems. The most common use for a WebHook is to feed leads into your CRM. But there are lots of other things you could do as well.

What Do You Need To Create a WebHook?

The very nature of a WebHook assumes that you have some ability to write code (or bribe a friend or colleague who does). You need to have a server that can accept a POST request (the one you’d get from a form submission), and be able to write a script that does something in response.

Note: Forms Builder support the integration of multiples WebHooks by form.

How To Create a WebHook?

To create a WebHook, you must perform the following steps:

  1. Go to the Add-Ons Manager and click on WebHooks.
  2. Click on the Create a Webhook button.
  3. A form used to configure the WebHook will appear:
    • Form: Select the form that will send notifications.
    • Handshake Key: This is a an optional key that you choose as an authentication mechanism to prevent spam to your Web Hook. This key will be included as a post parameter when our servers call yours. If you use this key, you should compare it to your copy to validate that the submission is legit.
    • Url: The URL where your script is located.
    • Status: Can be:
      • On: Send notifications
      • Off: Does not send notifications
    • Json: Can be:
      • On: Send data as JSON string
      • Off: Send data as Url Encoded string
    • Alias: Can be:
      • On: Send data with Field Alias as parameter key. Eg. Replaces ‘text_0’ by ‘name’.
      • Off: Send data with Field ID as parameter key
    • Click Create.

Note: Select multiple forms to create the same WebHook for each form.

How To Disable / Enable a WebHook?

To stop a webhook temporarily, you can choose to disable and enable later. To disable a form webhook, you must follow these steps:

  1. Go to the Add-Ons Manager and click on WebHooks.
  2. Click the Actions button of the WebHook to disable.
  3. Click Update.
  4. Change the Status from On to Off or vice versa.
  5. Click Update.

How To Delete a WebHook?

To delete a WebHook, you must perform the following steps:

  1. Select the checkbox of the WebHook to delete.
  2. Click Bulk Actions.
  3. Click Delete.
  4. Then it will show a popup asking you to confirm your decision to delete the WebHook.

The WebHooks Manager will reload and the selected WebHook will be deleted.

How To Enable/Disable Send data as JSON?

To send the post data as a JSON string, you must follow these steps:

  1. Go to the Add-Ons Manager and click on WebHooks.
  2. Click the Actions button of the WebHook to disable.
  3. Click Update.
  4. Change the Json field from On to Off or vice versa.
  5. Click Update.

How To Use WebHooks With a Form?

Now that you know what are WebHooks and how to use them in Forms Builder. Let’s see an example.

In this tutorial we are going to send notifications from one of our forms to the page: Beeceptor. This page captures our notifications and printed them on screen.

First Steps:

  1. Go to https://beeceptor.com/
  2. Enter a Endpoint Name and
  3. Press the Create Endpoint button
  4. Copy the Endpoint Url

Very Good! Know you have a URL that will serve to receive notifications sent by Forms Builder.

Next Steps:

  1. Go to Forms Builder
  2. Go to the Add-Ons Manager and Install WebHooks
  3. Now, Click on WebHooks.
  4. Click on the Create a Webhook button.
  5. Fill the form:
    • Form: Select ‘Mailing List – Inline Layout’
    • Url: Paste the Endpoint Url
    • Handshake Key: For this example: my_handshake_key
    • Status: ON
  6. Click on Create
How to create a webhook add-on in forms builder

Final Steps: Test your notifications

  1. Go to Form Manager
  2. Click on the ‘Mailing List – Inline Layout’ form
  3. Click on the Publish and Share button (the green arrow icon)
  4. Click on Share Form Link
  5. Check Without box and press Go!
  6. Fill the Mailing List form and submit
using webhooks add-on in forms builder

If your submission is received, a success message will appear.

example of using webhooks add-on

Now, go to Endpoint Url (and without refresh the page) you will see that the notification contains:

  • Form ID
  • Form Name
  • User IP
  • Submission Data
  • HandShake Key

And that’s it! You have sent your first notification to another server. Congratulations!

How To Save Form Submissions in an External Database?

Now that we know how to export Form Submissions in real time to an external application, we will see how we can store these submissions in a database.

If you have a website, you can perform the following steps and store Form Submissions of our Demo Form in your own database, you just need to change the WebHook URL.

1.- Create a database: ‘test‘. You can do this with your favorite software, such as phpMyAdmin or also using the following MySQL command:

CREATE DATABASE 'test';

2.- Create a database table: ‘subscribers‘, with 4 fields: id, name, email and ip_address. You can run the following MySQL query:

CREATE TABLE `test`.`subscribers` (
    `id` INT(11) NOT NULL AUTO_INCREMENT ,
    `name` VARCHAR(255) NOT NULL ,
    `email` VARCHAR(255) NOT NULL ,
    `ip_address` VARCHAR(255) NOT NULL ,
 PRIMARY KEY (`id`)) ENGINE = InnoDB;

3.- Setup the information to your database: ‘test’. The @app/custom/saveToDB.php file allows you to configure the following parameters:

define('DB_SERVER', "localhost");
define('DB_USER', "root");
define('DB_PASSWORD', "");
define('DB_DATABASE', "test");
define('DB_DRIVER', "mysql");

4.- Upload the @app/custom/saveToDB.php file to your server.

5.- Finally change the WebHook URL:

From now on, each time you submit the form, the data will be forwarded to your saveToDB.php file that will store the information in the corresponding field in the database.

As you can see in the saveToDB.php file:

  • We are receiving $_POST data sent by (Your Website) when a Form is submitted. For example:
$name = isset($_POST['text_0']) ? $_POST['text_0'] : '';

Here text_0 is the Field name. You can see the name of each field in the Form Builder – Code section

And that’s all. Now you can follow this logic to create your own custom file in order to receive Form Submissions and save them in your database.

Let’s Start

Create Your Forms

2- Google Analytics Add-On

The Google Analytics add-on will allow you to track a form with different Google Analytics accounts or track several forms with a single Google Analytics account, including Google Analytics 4.

The add-on for Google Analytics let you capture the user data and send them to Google’s servers. This will let you know how many people saw your forms, filled them or finished and submitted them.

Google analytics add-on in forms builder

How To Create Form Tracking?

To create a form tracking with Google Analytics, you must perform the following steps:

  1. Go to the Add-ons Manager and click on Google Analytics.
  2. Click on the Create Form Tracking button.
  3. A form used to configure the GA tracker will appear.
    • Form: Select the form to track.
    • Tracking ID: The ID account provided by Google Analytics.
    • Tracking Domain: Put the domain name of the site where you will publish the form
    • Status: Can be:
      • On: Send data
      • Off: Does not send data
    • Anonymize IP: The full IP address is never written in Google Analytics.
  4. Click Create

How To Disable / Enable Form Tracking?

To stop a form tracking temporarily, you can choose to disable and enable later.

To disable a form tracking, you must follow these steps:

  1. Go to the Add-ons Manager and click on Google Analytics.
  2. Click the Actions button of the Tracking to disable.
  3. Click Update.
  4. Change the state from On to Off or vice versa.
  5. Click Update.

How To Delete Form Tracking?

To delete a form tracking, you must perform the following steps:

  1. Select the checkbox of the Tracking to delete
  2. Click Bulk Actions
  3. Click Delete

Then it will show a popup asking you to confirm your decision to uninstall the add-on.

The tracking manager with Google Analytics will reload and the selected track will be deleted.

Let’s Start

Create Your Forms

More Add-Ons Are Coming Soon