Returns all files for specified action.

Parameters 

 

Name TypeDescription

cuuid

required

string

iShare action

action_uuid

optional

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
  });
};