• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

Pabbly Forms and Pabbly Connect Integration

Pabbly Forms and Pabbly Connect are now tightly integrated together.
  1. This means if someone submits the form inside Pabbly Forms.
  2. You can send the data to Pabbly Connect in real-time via Webhooks for processing.
  3. You can then process that form data internally inside Pabbly Connect.
  4. You can later send the data back to Pabbly Forms in real-time where the user can see the result of their submission after pressing the Submit button.
To show the result on the Pabbly Forms itself. You have to add a shortcode [show_webhook_response] to the Thank you page inside Pabbly Forms settings.

By adding that shortcode, any JSON data returned back to Pabbly Forms via Pabbly Connect will be shown as a result after the form is submitted.

See the example below of how the thank you page settings are added with the shortcode.

1637211136487.png



This is the step by step flow:

Step 1. Form created inside Pabbly Connect.

1637211498484.png


Step 2: Setup the webhook inside this form settings to send the data to Pabbly Connect.

1637211629176.png


Step 3: Build the workflow inside Pabbly Connect to process that incoming data. In this case, we are doing the BMI calculation using Number Formatter -> Spreadsheet Formulas.

1637211712509.png


The full screenshot of the workflow above is here:

Pabbly Connect.png

Step 4: The last step of this workflow is important as it sends the data back to the Pabbly Forms submitter.

See Image of the Data Forwarder. It includes the Key and Value pair.

The sample JSON structure is written like this
{"Key": "Value"}

In the image below the key is "Your BMI Index is"
and the value is "22.1"

This will be displayed as it is after the form is submitted.


2021-11-18_10h42_38.png


To show the result on the Pabbly Forms itself. You have to add a shortcode [show_webhook_response] to the Thank you page inside Pabbly Forms settings.

2021-11-18_10h45_39.png


See the demo in action after all the workflow settings inside Pabbly Connect and Thank you page settings inside Pabbly Forms are done.

The below form is submitted by the user.


2021-11-18_10h28_16.png


A loader appears with the Please wait, your BMI Index is being calculated message.

2021-11-18_10h52_13.png


The forwarded data from Pabbly Connect in Key value pair is displayed below.

2021-11-18_10h53_27.png


The above segment is completed and will work fine.

However, some users do not want to display the data on the Thank you page itself but instead, they want to create a dynamic HTML page and want to redirect the user to that dynamic page.

In that case, you can use the Dynamic Web Page by Pabbly module in your workflow to dynamically create an HTML page. It includes dynamic BMI index data based on our sample usage.

Once you supply the HTML, it will always generate a dynamic URL in the response to which you can redirect the user after the form submission.


2021-11-18_10h57_36.png


The sample page looks like below after it is generated and the URL is opened.

2021-11-18_10h58_45.png


In the last step of the workflow, instead of sending the key-value pair data to the Pabbly Form Builder. This time we will be sending the URL of the dynamically generated page back to the form builder.

The Pabbly form builder Thank You page settings will be written as usual with the [show_webhook_response] shortcode.

But the last step of the Pabbly Connect workflow will include the JSON as shown below.

The key this time will be pc_redirect_to and the value will be the URL to which you want to redirect the user.

For example:
{"pc_redirect_to":"https://example.com"}

Check the screenshot below, we have mapped the dynamic URL coming from the previous step to the Data Forwarder module. The form submitter will be redirected to this page after submitting the form.

This dynamic page URL is generated by the HTML that we supplied to the Dynamic Web Page by the Pabbly module.


1637214810778.png


This time after submitting the form, the form submitter will be redirected and sent in real-time to the URL that is added to the pc_redirect_to value.
 

Attachments

  • 2021-11-18_11h01_32.png
    2021-11-18_11h01_32.png
    35.1 KB · Views: 131
Last edited:
Top