Returns PGP key for specified contact.
Parameters
| Name | Type | Description |
uuid required | string | contact uuid |
cb optional | function | callback function |
Example
this.requestContactKey = function(uuid, cb) {
return _request({
method: 'GET',
url: '/contact/request/'+ uuid,
callback: cb
});
};
0 Comments