While downloading the zip archive, the .zip extension is not present in the folder.
When trying to download a zip archive from a query parameter in url with box id, I receive the downloaded file successfully. However, it's missing the ".zip" extension in its name. For example, if the zip archive is named "downloadzip", the downloaded file should ideally be named "downloadzip.zip", but it isn't. Am I missing something? According to this article (https://developer.box.com/reference/post-zip-downloads/), it explicitly states that ".zip" is added from the Box API.public async Task<MemoryStream> GetStreamForZip(string csvFileIds)
{ var fileIds = csvFileIds.Split(','); var request = new BoxZipRequest { Name = "downloadzip", Items = fileIds.Select(fileId => new BoxZipRequestItem { Id = fileId.Trim(), Type = BoxZipItemType.file }).ToList() }; using (MemoryStream