• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

webhook invalid data

Hello, I want to make a page that redirects to an url probided by a pabbly automation so I created the html that fetches the data from a pabbly webhook, but the pabbly webhook always answers {"status":"error","message":"Invalid WebHook Data"} and doesn't get the response. my web page has the following code:
JavaScript:
<script>
  const pabbliURL = 'https://connect.pabbly.com/workflow/sendwebhookdata/IjU3NjUwNTZkMDYzMjA0MzQ1MjZiNTUzMDUxMzci_pc';
    
    async function fetchURL(pabbliURL) {
        let response = await fetch(pabbliURL);

        if (response.status === 200) {
        let new_url = await response.text();
        // location.href = new_url;
        console.log(new_url);
        }
    }

    fetchURL(pabbliURL);
</script>

How can I get the webhook to work and grab its response?
 

Hugomiranda

Member

Attachments

  • Imagen 3.png
    Imagen 3.png
    36.8 KB · Views: 131
P

Pabblymember11

Guest
I have a problem with this too. I am executing the webhook from Bitrix24 and it does not return the variables, it returns these values:
The webhook response, in which the trigger is directly coming from the application as the trigger is a webhook-type trigger.

The webhook only captures the response data which was sent by the application itself and it is something that we cannot manipulate. If your data is not arriving accordingly then its a good chance that it is not being sent to Pabbly Connect's webhook URL In cases like these, you will have to contact the triggering application support team to see why your data is coming in such a manner.

To double-check, you can also confirm it through a webbooks testing site by the name of webhook.site.

You can copy the webhook URL provided by Webhook.site inside the application and do the test event inside the application's integration page to see if the webhook is being captured or not inside Webhook.site. This will double-confirm the issue.

Here is a sample video that you can follow to track the webhook issue:

You can check out the following video for your concern -

 
Top