Fetches contact of specified user.
Parameters
| Name | Type | Description |
cuuid required | string | user uuid |
cb optional | function | callback function |
Example Result
this.readUserContact = function(cuuid, cb) {
return _request({
method: 'GET',
url: 'user/contacts/' + cuuid,
callback: cb
});
};
Add Comment