PUT /a/config/encryption/import
Import a previously exported master key, requires the password created at export time
Body Parameters
Name | Description | Type | Required |
---|---|---|---|
Key | Imported key data | #/definitions/encryptionKey | |
Override | Whether to override if a key with same ID already exists | boolean | |
StrPassword | Key password | string |
Body Example
{
"Key": {
"Content": "string",
"CreationDate": 10,
"ID": "string",
"Info": {
"Exports": [
{
"By": "string",
"Date": 10
}
],
"Imports": [
{
"By": "string",
"Date": 10
}
]
},
"Label": "string",
"Owner": "string"
},
"Override": true,
"StrPassword": "string"
}
Response Example (200)
Response Type /definitions/encryptionAdminImportKeyResponse
{
"Success": true
}