Deletes specified contact.

Parameters 

 

Name TypeDescription

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
  });
};