I would like to trigger that same schedule API workflow when something changes on my user data. The problem is that I can’t do it on the conditional of the trigger and I can’t change the type because I want to make a seach through that list.
So my question is, how can I call or trigger that schedule API worflow from the frontend ?
Thank’s for your answer. I created the workflow on my backend (minus the conditional) but I don’t see the “trigger backend workflow” on my frontend. Could you be more specific please ?
Schedule API Workflow…when you schedule it you can use the ‘current date/time’ operator to essentially trigger it. API workflow is another way to say backend workflow.
You are using an database event trigger. I don’t think these can be “scheduled” from the front end. Anytime the database is updated, it runs automatically. Trigger Event - Bubble Docs
If you prefer, you can create a regular API Workflow then you can schedule it from the database trigger or the front end. Just copy all the steps into a regular backend workflow API instead of a database trigger.
Thanks for taking the time. I think you’re right and they can’t be triggered in front end. I have already created regular API workflow. But I need to search through a list before calling a regular api workflow everytime the user data change.