GET v1/Products/{productId}/Properties
Get all Product Properties.
Request Information
Requires Authorization!
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
productId |
The id of the product. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
A collection of product properties.
Collection of ProductProperty
Name | Description | Type | Additional information |
---|---|---|---|
CultureId |
Gets or sets the culture identifier. |
integer |
None. |
ShopId |
Gets or sets the shop identifier. |
integer |
None. |
ProductPropertyDefId |
Gets or sets the product property definition identifier. |
integer |
Required |
Code |
Gets or sets the code. |
string |
None. |
Value |
Gets or sets the value. |
string |
Max length: 2147483647 |
Response Formats
application/json, text/json
Sample:
[ { "CultureId": 1, "ShopId": 1, "ProductPropertyDefId": 1, "Code": "sample string 2", "Value": "sample string 3" }, { "CultureId": 1, "ShopId": 1, "ProductPropertyDefId": 1, "Code": "sample string 2", "Value": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfProductProperty xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ProductProperty> <CultureId>1</CultureId> <ShopId>1</ShopId> <ProductPropertyDefId>1</ProductPropertyDefId> <Code>sample string 2</Code> <Value>sample string 3</Value> </ProductProperty> <ProductProperty> <CultureId>1</CultureId> <ShopId>1</ShopId> <ProductPropertyDefId>1</ProductPropertyDefId> <Code>sample string 2</Code> <Value>sample string 3</Value> </ProductProperty> </ArrayOfProductProperty>