Returns metadata for specified user
Parameters
| Name | Type | Description |
uuid required | string | specified user id |
cb optional | function | callback function |
Example Result
this.userMetadata = function(uuuid, cb) {
return _request({
method: 'GET',
url: '/user/metadata/' + uuuid,
callback: cb
});
};
Add Comment