GET api/webshop/parameterconfig/fixed/id/{id}

Provides fixed parameter config, given an id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

True/false.

FixedParameterConfig
NameDescriptionTypeAdditional 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
}

application/xml, text/xml

Sample:
<FixedParameterConfigDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models">
  <Order>6</Order>
  <ParameterChoice>5</ParameterChoice>
  <ParameterProperty>4</ParameterProperty>
  <GroupId>2</GroupId>
  <Id>1</Id>
  <WebshopId>3</WebshopId>
</FixedParameterConfigDTO>