When I call this API endpoint "Api.Files.DownloadZipAsync", why am I not getting any link to the zip file?
Instead I am getting name, path_lower, path_display, id.
When I run it on the API explorer, it formed a link in the button below ... something like "blob:https://dropbox.github.io/e05a95ca-8ff7-473b-93ec-b339db391dde"
How do I form this download link?
Am I doing something wrong?
Below is my code snippet
using (var dbx = new DropboxClient(token))
{
zipdownload = await dbx.Files.DownloadZipAsync("/fr_test");
}