Deletes specified PGP key.
Parameters
| Name | Type | Description |
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
});
};
Add Comment