Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Deletes specified contact.

Parameters 

 

Name TypeDescription

cuuid

required

string

contact uuid

cb

optional

function

callback function



Example

Code Block
languagejs
this.deleteContact = function(cuuid, cb) {
  return _request({
    method: 'GET',
    url: '/contact/delete' + cuuid,
    callback: cb
  });
};

 

 

Quatrix JavaSctipt APIs QJA