Download a file from a URL, for instance: localhost:8080/filename.pdf

0
Is it possible to download a file from a given URL like you would typically see on a website or in an application? If a visitor visits the URL: localhost:8080/filename.pdf, it should immediately download that file.
asked
2 answers
0

Hi Jeroen,

 

you can retrieve the file GUID and use it like this:

http://localhost:8080/file?guid=5629499534214930

answered
0

Hi Jeroen, 

 

You can achieve this requirement via the Deeplink Module 

 

You can generate the URL below 

 

http://localhost:8080/filedownload/filename.pdf

 

The microflow connected to this deep link should fetch the proper file from the database based on the filename mentioned in the URL, and then we can use the download file activity in the microflow to download the same.

 

answered