GET v1/Secure/Attributes/Value/{applicationCode},{key}
Returns values from secured and public keys
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicationCode |
Public application code. Can be found in the Admin site |
string |
Required |
| key |
Key name for requested value |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
KeyValueDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Key": "sample string 1",
"Value": "sample string 2"
}
application/xml, text/xml
Sample:
<KeyValueDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bunzl.ApplicationRegistry.DTO"> <Key>sample string 1</Key> <Value>sample string 2</Value> </KeyValueDTO>