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