Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Returns link for download all sended files as zip archive.

Parameters 

 

Name TypeDescription

id 

string

download page id

password

string

for download page, if this page under password protection

cb

functioncallback function


Example Result

 

this.getDownloadAllFilesLink = function(id, password, cb) {
  return _request({
    method: 'GET',
    url: '/is/get_download_link/' + id + preparePasswordUrl(password),
    callback: cb
  });
};

 

 

  • No labels
Quatrix JavaSctipt APIs QJA