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

« Previous Version 3 Next »

Returns link for download specified sended files as zip archive.

Parameters 

Name TypeDescription

id 

string

download page id

links

array

selected files ids

password

stringfor download page, if this page under password protection

cb

functioncallback function


Example Result

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

 

 

  • No labels
Quatrix JavaSctipt APIs QJA