GET api/webshop/parameternames/fixed

Provides list of parameter names for the fixed parameter route config.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of parameter name models.

Collection of FixedParameterName
NameDescriptionTypeAdditional information
Id

Id of the parameter property name.

integer

None.

ParameterProperty

The parameter property name.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ParameterProperty": "sample string 2"
  },
  {
    "Id": 1,
    "ParameterProperty": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFixedParameterNameDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models">
  <FixedParameterNameDTO>
    <Id>1</Id>
    <ParameterProperty>sample string 2</ParameterProperty>
  </FixedParameterNameDTO>
  <FixedParameterNameDTO>
    <Id>1</Id>
    <ParameterProperty>sample string 2</ParameterProperty>
  </FixedParameterNameDTO>
</ArrayOfFixedParameterNameDTO>