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

Returns download links for specified files. Check "data" example below.

Parameters 

 

Name TypeDescription

data

required

object

information about files that should be downloaded

cb

optional

function

callback function


 

Example

 

this.getDownloadLink = function(data, cb) {
  return _request( {
    method : 'POST',
    url: '/file/downloadlink',
    data: data,
    callback: cb
  });
};



Example Result

{
 ids: ["12345678-1234-1234-123456789098"]
}

 

 

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.
Quatrix JavaSctipt APIs QJA