I do not really understand what you are trying to do.
It is a perfectly standard <a href="...">
link with a relative URL of blob:de3889b8-23d4-4776-bn8f-68f34911fad9
. So assuming the URL of the current page (the page where you find the link) is http://host.domain.org/app/path/to/page
, the download link is :
http://host.domain.org/app/path/to/page/blob:de3889b8-23d4-4776-bn8f-68f34911fad9
Of course, it is not a regular file URL that could be directly served by an Apache HTTP server. It probably means that there is a web application on the server that know what to do with such an URL, maybe logs somewhere at what moment it was used and sends the csv file in the HTTP response.
It is perfectly possible with any web application to generate such UUID containing, or other random Urls, and use them to have a control of who downloads what and when. For instance, the link might expire within few minutes or after first download. The real URL may not even exists if (as suggested by the name) the csv is stored as a BLOB in a database.