Returns link for download all sended files as zip archive.
Parameters
| Name | Type | Description |
id required | string | download page id |
cb optional | function | callback function |
Example Result
this.getDownloadAllFilesLink = function(id, cb) {
return _request({
method: 'GET',
url: '/is/get_download_link/' + id,
callback: cb
});
};
0 Comments