Returns all share actions history.
Parameters 
| Name | Type | Description | 
cuuid required  | string | iShare uuid  | 
data required  | object | |
cb optional  | function | callback function  | 
Example
this.getTracking = function(cuuid, data, cb) {
  return _request({
    method: 'GET',
    url: '/is/tracking/' + cuuid,
    data: data,
    callback: cb
  });
};
Add Comment