Returns public PGP keys of specified users or contacts.
Parameters
| Name | Type | Description |
user_ids required | function | array with user or contact id's |
cb optional | function | callback function |
Example
this.getUserKeys = function(uuid, cb){
return _request({
method: 'GET',
url: '/user/key/' + uuid,
callback: cb,
silent: true
});
};
0 Comments