I am using HTTP get request module. And I have another secondary flow which catches and respond the HTTP request. The Request is simple though I am getting Error: 500 Internal Server Error sometimes. 5 out of 10 times I gives error. But it works for rest 5 request flawlessly.
And I checked the history of the flow which is catching the request that flow works everytime perfectly but there is some problem in transmission after request. HTTP module is getting in catching response again.
I hope someone can help.
Hey, there is actually no way to “request” data to another webhook. Per se, a webhook cannot be called, it can only send data when it has something to send (an action happens on software A).
Can you please share the logic you want to create, and the software you are using?
I am trying to divide my main logic into small unit flows. So I can reuse those logic in other flows for flexibility. I am creating a flow A which calls another flow B. Flow B contains webhook trigger, some computations and webhook reponse. Flow A make api calls to Flow B and wait for response.
Problem is in the response transmission. Flow A get error in the HTTP module which is calling Flow B’s webhook trigger. However Flow B is working fine and successfully.
Real process is bit more complex therefore sharing small part of it!! Let me know if you need more explanation
That’s the thing, Flow A should catch the webhook created by Flow B when there is something, not call and endpoint via HTTP on a predetermined schedule. Hope this is clear.