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

Fetches contact of specified user.

Parameters 

 

Name TypeDescription

cuuid

required

string

user uuid

cb

optional

function

callback function



Example Result

 this.readUserContact = function(cuuid, cb) {
  return _request({
    method: 'GET',
    url: 'user/contacts/' + cuuid,
    callback: cb
  });
};

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA