Operations at encryption/
This page describes the service operations at this endpoint.
| URI | Method | Description |
|---|---|---|
| encryption/ | POST | Creates a new key with the specified name and passphrase. |
| encryption/ | GET | Gets the list of encryption keys. |
| encryption/{keyId} | GET | Exports a key. |
| encryption/{keyId}/serialized | GET | Returns serialized binary representation of encryption key by given key ID. |
| encryption/changeKeyStatusToReplication/{keyId} | POST | Changes key status to 'Replication Key'. Returns updated key info. |
| encryption/changeKeyStatusToUniversal | POST | Changes key status to 'Universal Key'. Returns updated key info. |
| encryption/delete/{keyId} | DELETE | Deletes an encryption key or throws exception if selected key is used. |
| encryption/getFilteredKeys | POST | Gets the filtered list of encryption keys. Pass the type of the keys as parameter |
| encryption/getKey/{agentId} | GET | Returns encryption key used by agent. |
| encryption/import | POST | Imports an exported key. Returns imported key info. |
| encryption/lock/{keyId} | POST | Locks the specified key. Returns updated key info. |
| encryption/passphrase | POST | Changes the passphrase for the specified key. |
| encryption/serimport | POST | Imports an encryption key by given serialized binary representation. Returns imported key info. |
| encryption/unlock | POST | Unlocks the specified key. Returns updated key info. |
| encryption/update/{keyId} | POST | Updates existing key name and comment. Returns updated key info. |