Skip to main content
13-Aquamarine
September 16, 2019
Solved

The best way for trigger event?

  • September 16, 2019
  • 2 replies
  • 1324 views

We have a scenario where we need trigger event after when new file uploaded to our file repository. What's the best way to implement it? 

Best answer by PaiChung

If you use the upload widget or the filetransfer copy function, there will be a completed event you can use.

if you don't have those, then you'll have to do some sort off 'file watcher setup' where a timer or scheduler check the folder

OR if the system that is sending the file has the capability, it could invoke a rest api call

2 replies

PaiChung22-Sapphire IAnswer
22-Sapphire I
September 16, 2019

If you use the upload widget or the filetransfer copy function, there will be a completed event you can use.

if you don't have those, then you'll have to do some sort off 'file watcher setup' where a timer or scheduler check the folder

OR if the system that is sending the file has the capability, it could invoke a rest api call

and113-AquamarineAuthor
13-Aquamarine
September 18, 2019

Hi,

thanks a lot for your reply!