Disables Quatrix for specified user.
Parameters
| Name | Type | Description |
user_id required | string | specified user id |
cb optional | function | callback function |
Example Result
this.disableUserShare = function(user_id, cb) {
return _request({
method: 'GET',
url: '/user/remove_ishare/'+user_id,
callback: cb
});
};
0 Comments