Deletes specified PGP key.

Parameters 

 

Name TypeDescription

uuid

required
string

key uuid

cb

optional

function

callback function



Example

this.deleteKey = function(uuid, cb) {
  return _request({
    method: 'GET',
    url: '/key/delete/' + uuid,
    callback: cb
  });
};