GET api/v7/EncryptionKey/GetAll

Returns all the encryption key and Id for current tenant

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A response containing collection of Encryption Key/Value Pairs

Collection of EncryptionKey
NameDescriptionType
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="
  },
  {
    "KeyCode": "sample string 1",
    "KeyValue": "QEA="
  }
]

application/xml, text/xml

Sample:
<ArrayOfEncryptionKeyDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <EncryptionKeyDto>
    <KeyCode>sample string 1</KeyCode>
    <KeyValue>QEA=</KeyValue>
  </EncryptionKeyDto>
  <EncryptionKeyDto>
    <KeyCode>sample string 1</KeyCode>
    <KeyValue>QEA=</KeyValue>
  </EncryptionKeyDto>
</ArrayOfEncryptionKeyDto>