Returns PGP key for encrypting password.
Parameters
| Name | Type | Description |
uuid required | strig | contact uuid |
cb optional | function | callback function |
Example
this.requestLoginKey = function (uuid, cb){
return _request({
method: 'GET',
url: '/key_request/login/'+ uuid,
callback: cb
});
};
Add Comment