GET api/v7/EncryptionKey?keyCode={keyCode}
Returns the encryption key/value pair with the specified Key Code
Request Information
URI Parameters
Name | Description | Type | Required? | Additional information |
---|---|---|---|---|
keyCode * |
KeyCode to retrieve the Encryption key/value pair |
string |
Yes |
None. |
Body Parameters
None.
Response Information
Resource Description
A response containing Encryption Key/Value Pair
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>