Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns link for download all sended files as zip archive.

Parameters 

 

Name TypeDescription

id

required 
string

download page id

cb

optional

functioncallback function


Example Result

 

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

 

 

Quatrix JavaSctipt APIs QJA