Hi there,
I'm currently building a protocol with HTTP requests in it, which takes the response content and puts it into a table. I have been trying to get the HTTP request to make this call every morning at midnight and refresh the table and have been unsuccessful so far. I have been trying to set up a trigger that will look at a parameter that represents the current time and when it matches "12:00". However, this doesn't seem to work for some reason, and have followed the documentation.
Is there a better way to do this? Or am I making some error when attempting to match on a string?
Thank you in advance.
You could leverage other modules. An Automation script that sets a manual trigger in your protocol which makes the API call.
In turn a task in Scheduler where you have the flexibility to set the exact time and frequency of calling this Automation script.
Oh! this is actually a great solution because I actually have a button parameter that activates the api call. I could instead just use a qaction to click the button and activate the API call. Thank you!