GET api/webshop/parameterconfig/fixed
Provides list of parameter configs for the fixed parameter route config.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of parameter config models.
Collection of FixedParameterConfigName | Description | Type | Additional information |
---|---|---|---|
Id |
The id of the parameter config. |
integer |
None. |
GroupId |
The group id. |
integer |
None. |
WebshopId |
The web shop id. |
integer |
None. |
ParameterProperty |
The parameter property for the parameter choice |
integer |
None. |
ParameterChoice |
The choice of the parameter. |
integer |
None. |
Order |
The placement of the choice in the property. I.e. 1...5. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "GroupId": 2, "WebshopId": 3, "ParameterProperty": 4, "ParameterChoice": 5, "Order": 6 }, { "Id": 1, "GroupId": 2, "WebshopId": 3, "ParameterProperty": 4, "ParameterChoice": 5, "Order": 6 } ]
application/xml, text/xml
Sample:
<ArrayOfFixedParameterConfigDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models"> <FixedParameterConfigDTO> <Order>6</Order> <ParameterChoice>5</ParameterChoice> <ParameterProperty>4</ParameterProperty> <GroupId>2</GroupId> <Id>1</Id> <WebshopId>3</WebshopId> </FixedParameterConfigDTO> <FixedParameterConfigDTO> <Order>6</Order> <ParameterChoice>5</ParameterChoice> <ParameterProperty>4</ParameterProperty> <GroupId>2</GroupId> <Id>1</Id> <WebshopId>3</WebshopId> </FixedParameterConfigDTO> </ArrayOfFixedParameterConfigDTO>