GET api/v7/EncryptionKey
Returns the current active encryption key and Id for tenant
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A response containing Encryption Key/Value Pairs
EncryptionKeyName | Description | Type |
---|---|---|
KeyCode |
Unique Key Code to represent Encryption Key |
string |
KeyValue |
The Encryption Key Value |
Collection of byte |
Response Formats
application/json, text/json
Sample:
{ "KeyCode": "sample string 1", "KeyValue": "QEA=" }
application/xml, text/xml
Sample:
<EncryptionKeyDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <KeyCode>sample string 1</KeyCode> <KeyValue>QEA=</KeyValue> </EncryptionKeyDto>