The following API call allows the user to edit PGP key.
Resource URL
/api/1.0/pgp-key/edit/<ID>
Resource Information
| Response formats | JSON |
| Response code | 200 |
| Requires authentication? | Yes |
| HTTP Method | POST |
Parameters
| Name | Type | Default Value | Validation | Description |
name optional | string | - | string | PGP key name. |
public optional | string | - | PGP public key data | public part of PGP key |
private optional | string | - | PGP private key data | private part of PGP key |
Example Request URL
Example Result
{
"id": <uuid>,
"name": <string>,
"created": <uuid>,
"modified": <uuid>,
"private": <string>,
"public": <string>,
"email": <string>
}
Add Comment