I am trying to add some data to a DB. Then, after a set period of time, I'd like that data to delete.
I'm using a create service, and a delete service. Upon success of the create service, I'd like a given period of time to elapse, then I want the delete service to run.
I have mapped the delete service to run at the completion of the create service. I tried inserting some "run JS" (a setTimeout() function) between the two to delay the delete service, but it doesn't seem to work.
Anyone know how I might delay the running of the delete service?
Thanks!