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

Returns link for download specified sended files as zip archive.

Parameters 

 

Name TypeDescription

id

required
string

download page id

links

required

array

selected files ids

cb

optional

functioncallback function


Example Result

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

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA