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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Returns public PGP keys of specified users or contacts.

Parameters 

Name TypeDescription

user_ids

array

array with user or contact id's

cb

function

callback function


Example

this.getUsersKeys = function(user_ids, cb) {
  return _request({
    method: 'POST',
    url: '/key/users',
    data: {ids: user_ids},
    callback: cb
  });
};

 

 

  • No labels
Quatrix JavaSctipt APIs QJA