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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

Returns all files for specified action.

Parameters 

 

Name TypeDescription

cuuid

required

string

iShare action

action_uuid

required

string

uuid of specified action

cb

optional

functioncallback function


Example

 

this.getTrackingFiles = function(cuuid, action_uuid, cb){
  return _request({
    method: 'GET',
    url: '/is/tracking/' + cuuid + '?action=' + action_uuid,
    callback: cb
  });
};

 

 

  • No labels
Quatrix JavaSctipt APIs QJA