Returns sended files list.
Parameters
| Name | Type | Description |
id required | string | download page id |
password required | string | for download page, if this page under password protection |
cb optional | function | callback function |
Example
this.listFiles = function(id, cb) {
return _request({
method: 'GET',
url: '/is/list_links/' + id,
callback: cb
});
};
Add Comment