I am using Transloadit and Uppy on my react web app.
I am able to upload images from my app to translodit where my template would do some processing to the image and then finally export it to my Azure blob storage.
I want to know how do I get my ${file.id} after uploading so that I can save this to my database and then directly access the image since using this ${file.id} I can form the path of the file in my Azure Blob storage container.
what is the optimal way to do this when using translodit ?
Basically my problem is how do I get the ${file.id} in my frontend app after upload is completed ?
Thanks