POST api/SystemParameter/get-system-parameters-by-names/{isNoCaching}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
parameterNames
No documentation available.

Define this parameter in the request body.

isNoCaching
No documentation available.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2",
  "sample string 3"
]

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'IEnumerable`1'.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "$id": "2",
    "Id": 1,
    "ParameterName": "sample string 2",
    "ParameterValue": "sample string 3",
    "ParameterDesc": {
      "$id": "3"
    }
  },
  {
    "$ref": "2"
  },
  {
    "$ref": "2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSystemParameterDataDTO xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SystemParameterDataDTO>
    <Id>1</Id>
    <ParameterName>sample string 2</ParameterName>
    <ParameterValue>sample string 3</ParameterValue>
    <ParameterDesc />
  </SystemParameterDataDTO>
  <SystemParameterDataDTO>
    <Id>1</Id>
    <ParameterName>sample string 2</ParameterName>
    <ParameterValue>sample string 3</ParameterValue>
    <ParameterDesc />
  </SystemParameterDataDTO>
  <SystemParameterDataDTO>
    <Id>1</Id>
    <ParameterName>sample string 2</ParameterName>
    <ParameterValue>sample string 3</ParameterValue>
    <ParameterDesc />
  </SystemParameterDataDTO>
</ArrayOfSystemParameterDataDTO>