Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA
Skip to end of metadata
Go to start of metadata

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

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA