Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

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

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

 

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



Example Result

Code Block
languagejs
{
 ids: ["12345678-1234-1234-123456789098"]
}

 

 

Quatrix JavaSctipt APIs QJA