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

« Previous Version 2 Current »

Returns public PGP keys of specified users or contacts.

Parameters 

 

Name TypeDescription

user_ids

required

array

array with user or contact id's

cb

optional

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