Returns all share actions history for specified day.
Parameters
| Name | Type | Description | 
cuuid required  | string | uuid iShare uuid  | 
day required  | integer | specified day  | 
cb optional  | function | callback function  | 
Example
this.getTrackingDaily = function(cuuid, day, cb) {
  return _request({
    method: 'GET',
    url: '/is/tracking/' + cuuid + '?date=' + day,
    callback: cb
  });
};
0 Comments