Returns PGP key for specified contact.

Parameters 

 

Name TypeDescription

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
  });
};