• 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

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: 73
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