Webhook in test mode

i am able to run my test and production (enabled workflow).

My challenge is the TEST webhook will only run the FIRST node (as screenshot), it doesn’t flow to subsequence node to get a fancy response body

my current workaround is to enable and run the production webhook to continue my development which consume a lot of the 10k/month’s run.

is there any way to perform the webhook test not using production environment?

screenshot below illustrate i can only see the result in production mode

Tried running webhook in the test mode and it does trigger next nodes for me.

self-hosted/docker/1.98.1

Hey @weitat.bipo,

I totally understand the issue you’re facing.

Let me explain why this is happening.

To help with testing, I’m sharing the following workflow:

Let’s understand why you are facing that problem

  • I believe during testing, you might be starting the workflow from inside the webhook node (see screenshot below).

  • When you do that, only that specific node gets executed. Since your webhook node is configured to “respond with webhook,” no further steps are executed and that’s why you didn’t get any out in postman,

  • So now how you will run the workflow, To test the entire workflow, you need to start it from the canvas (see the screenshot below)

To test the whole workflow properly, use either of the two test buttons shown in the screenshot. These will run the entire workflow, not just a single node.

Steps to test:

  1. Click one of the test buttons shown above.
  2. Copy the test webhook URL into Postman.
  3. After clicking the test button, make a request from Postman.
  4. And woohoo… you should see the correct output!
1 Like

i get your point. My argument is each single attempts, i got to hit “Listen to test event” or “execute workflow” , wherelse if i promote it to production (active), i don’t need to do it each time but it consume my production quota.

i guess i jz have to leave with it now :slight_smile:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.