Updates existing contact. Check "data" example below.
Parameters
| Name | Type | Description |
cuuid required | string | PGP key name. |
data required | uuid | key owner user ID. |
cb optional | string | public part of PGP key |
Example
this.updateContact = function(cuuid, data, cb) {
return _request({
method: 'POST',
url: '/contact/edit/' + cuuid,
data: data,
callback: cb
});
};
Example Result
{
email: 'hello@world.net',
name : 'mr. Smith'
}
Add Comment