POST api/Common/GetSystemConfigration
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DescriptiveResponseOfListOfSystemConfigurationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Value | Collection of SystemConfigurationDto |
None. |
|
| CoreValue | string |
None. |
|
| IsErrorState | boolean |
None. |
|
| ErrorDescription | string |
None. |
|
| ErrorMetadata | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Value": [
{
"Key": "sample string 1",
"Value": "sample string 2",
"DataType": "sample string 3"
},
{
"Key": "sample string 1",
"Value": "sample string 2",
"DataType": "sample string 3"
}
],
"CoreValue": "sample string 1",
"IsErrorState": true,
"ErrorDescription": "sample string 3",
"ErrorMetadata": {}
}
application/xml, text/xml
Sample:
<DescriptiveResponseOfArrayOfSystemConfigurationDtorubKl81o xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.Entities">
<CoreValue>sample string 1</CoreValue>
<ErrorDescription>sample string 3</ErrorDescription>
<ErrorMetadata />
<IsErrorState>true</IsErrorState>
<Value xmlns:d2p1="http://schemas.datacontract.org/2004/07/MYLERZ.Base.DTO">
<d2p1:SystemConfigurationDto>
<d2p1:DataType>sample string 3</d2p1:DataType>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:SystemConfigurationDto>
<d2p1:SystemConfigurationDto>
<d2p1:DataType>sample string 3</d2p1:DataType>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:SystemConfigurationDto>
</Value>
</DescriptiveResponseOfArrayOfSystemConfigurationDtorubKl81o>