Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

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

Returns public PGP keys of specified users or contacts.

Parameters 

 

Name TypeDescription

user_ids

required
function

array with user or contact id's

cb

optional

function

callback function


Example

Code Block
languagejs
this.getUserKeys = function(uuid, cb){
  return _request({
    method: 'GET',
    url: '/user/key/' + uuid,
    callback: cb,
    silent: true
  });
};

 

 

Quatrix JavaSctipt APIs QJA