I am testing a simple scenario where I have a webhook (I call it with Postman and pass an action as parameter like ?action=createNewTask).
After that I have a router that makes different HTTP Requests (depending on action).
Each POST Request calls a different webhook (in separate scenario) and for now I just want to return the message from the “createNewTask” scenario. I keep getting message Accepted from first webhook as response instead of my custom message from webhook response in “createNewTask” scenario.
Main scenario
I call the first webhook (Waiting for ?action) from Postman. The router calls the HTTP Make a Request module with URL from Create New Task Webhook. I expect a response in Postman to be my custom response. Instead I see Accepted.
The second Other ? route returns a custom WebHook Response that I set up. So it seems only an issue when the response is coming from another scenario.
Follow up Scenario
Any help appreciated
Ty