Hello community, is there any module that enables triggering or continuing of the workflow based on user’s approval?
For example (in my web app):
Frontend sends the user’s payload to my Make.com webhook
Workflow processes the user’s prompt and in the middle of the workflow asks to confirm whether the user wants to proceed or not (sends the response to my front end or back end)
Then, if the user on the front end confirms yes, then the Make.com workflow continues. If the user rejects then the workflow doesn’t continue
So, how can I trigger Make scenario to continue in the middle of the scenario only upon user’s trigger/approval
I hope it’s not confusing what I am trying to explain here
I tried Sleep module but sleep module just waits and executes automatically when the time is up
Hey @Damir , I understand what you mean. That process is called “HUMAN IN THE LOOP“.
Well, when it comes to setting up that functionality, make does not have a functionality that does that but there’s an n8n node that does that.
However, It’s still quite possible to create a similar functionality in make.
If the previous threads above does not answer your question, please edit your question and provide additional details to demonstrate the difference between your question and the duplicate discussions.
If you require help implementing the answers in the previous threads linked above, please reply with more details of what you have tried, including screenshots.
Thank you for your response. Can you please explain what you said a little bit more: You’ll need two scenarios. The second handles the “callback” from the approval request.
The trick is how to transfer the output from the scenario 1 to the callback scenario.