send data via webhook/ bubble

  • Jaime Isaac Bojorquez Guerrero
    Asked on June 13, 2023 at 9:22 PM

    So, we must send this a a server where we can use the data and manipulate it? So unless we have a php server to manipulate data you recomend use an automation platform?

    Suppose i want to send to bubble database, do i need to use an automation platform right? bubble cant just automatiaccly update any row i suppose

  • Lyla JotForm Support
    Replied on June 14, 2023 at 3:36 AM

    Hi Jamie,

    Thanks for reaching out to us for help. You can use webhook integration to send the data to the other apps automatically. You can also check out this guide to learn more about Webhook PHP Script Examples.

    If you want to connect your Bubble account to Jotform and automatically receive your future form submission data to Bubble, this can be achieved via our Bubble Integration via Zapier. You can check that out here.

    1677246032 63f8be50a3cb0  Screenshot 0 Screenshot 10

    Please keep in mind that, integrations through Jotform only trigger on submission of your form. If you can provide us with more details about what you want to achieve, we can understand better and help you with that.

    After we hear back from you, we’ll have a better idea of what’s going on and how to help.

  • jaimeisaac
    Replied on June 14, 2023 at 3:22 PM

    Hello,

    I want to catch this webhooks on another web app. But i need to see/test first the format of the data. Is it JSON?

    Im not a php or backend developer but ive used Replit PHP instance and pointed the webhook to its URL. I used the sample script and indeed i got the results on a txt file. Do you have a php script to display the last webhook on the screen?

    <html>
      <head>
        <title>PHP Test</title>
      </head>
      <body>
        <?php echo '<p>WEBHOOK JOTFORM</p>'; ?> 


      <?php

    // convert JSON to PHP
    $data = json_decode($_REQUEST['rawRequest'], true);


    // write data to a file
    file_put_contents('webhook_test.txt', print_r($data, true), FILE_APPEND);
     echo $data;

    ?>
      <script src="https://replit.com/public/js/replit-badge-v2.js" theme="dark" position="bottom-right"></script>
      </body>
    </html>
  • Bruce Project Specialist
    Replied on June 15, 2023 at 9:04 AM

    Hi Jamie,

    Thanks for getting back to us. Unfortunately, we don't have a PHP script tool to display the last webhook on the screen. But I can recommend you to use this site for this.

    Let us know if you need any more help.