Upgrade contact to user.
| Name | Type | Description |
user_uuid required | string | user uuid |
data optional | object | information about specified contact |
cb optional | function | cullback function |
this.contactToUser = function(user_uuid, data, cb) {
return _request({
method : 'POST',
url: '/contact/upgrade/'+ user_uuid,
data: data,
callback: cb
});
}; |