PUT v1/ProductGroups
Update an existing Product group.
Request Information
Requires Authorization!
URI Parameters
None.
Body Parameters
The product group.
ProductGroupChanges| Name | Description | Type | Additional information |
|---|---|---|---|
| SyncPropertiesOnSave |
Set this property to true to update the Properties collection when saving. |
boolean |
None. |
| ChangedTimestamp |
Gets or sets the changed timestamp. |
date |
None. |
| ShopGroupId |
Gets or sets the shop group identifier. |
integer |
Required |
| Sequence |
Gets or sets the sequence. |
integer |
Required |
| Comment |
Gets or sets the comment. |
string |
Max length: 2147483647 |
| SyncEnabled |
Gets or sets a value indicating whether the synchronize is enabled. |
boolean |
Required |
| IsActive |
Gets or sets a value indicating whether this instance is active. |
boolean |
Required |
| IncludeInNavigation |
Gets or sets a value indicating whether the navigation is included. |
boolean |
Required |
| ImageFileId |
Gets or sets the image file identifier. |
integer |
None. |
| Children |
Gets or sets the list of the children elements. |
Collection of integer |
None. |
| Properties |
Gets or sets the Product Group properties. |
Collection of ProductGroupProperty |
None. |
| Id |
Gets or sets the identifier. |
integer |
Required |
| Name |
Gets or sets the name. |
string |
Max length: 100 |
| ParentProductGroupId |
Gets or sets the parent product group identifier. |
integer |
None. |
Request Formats
application/json, text/json
{
"SyncPropertiesOnSave": true,
"ChangedTimestamp": "2026-04-03T18:32:14.0779962+02:00",
"ShopGroupId": 2,
"Sequence": 3,
"Comment": "sample string 4",
"SyncEnabled": true,
"IsActive": true,
"IncludeInNavigation": true,
"ImageFileId": 1,
"Children": [
1,
2
],
"Properties": [
{
"CultureId": 1,
"ShopId": 1,
"Code": "sample string 1",
"Value": "sample string 2"
},
{
"CultureId": 1,
"ShopId": 1,
"Code": "sample string 1",
"Value": "sample string 2"
}
],
"Id": 8,
"Name": "sample string 9",
"ParentProductGroupId": 1
}
application/xml, text/xml
<ProductGroupChanges xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Id>8</Id>
<Name>sample string 9</Name>
<ParentProductGroupId>1</ParentProductGroupId>
<ChangedTimestamp>2026-04-03T18:32:14.0779962+02:00</ChangedTimestamp>
<ShopGroupId>2</ShopGroupId>
<Sequence>3</Sequence>
<Comment>sample string 4</Comment>
<SyncEnabled>true</SyncEnabled>
<IsActive>true</IsActive>
<IncludeInNavigation>true</IncludeInNavigation>
<ImageFileId>1</ImageFileId>
<Children>
<ProductGroupId>1</ProductGroupId>
<ProductGroupId>2</ProductGroupId>
</Children>
<Properties>
<Property>
<CultureId>1</CultureId>
<ShopId>1</ShopId>
<Code>sample string 1</Code>
<Value>sample string 2</Value>
</Property>
<Property>
<CultureId>1</CultureId>
<ShopId>1</ShopId>
<Code>sample string 1</Code>
<Value>sample string 2</Value>
</Property>
</Properties>
<SyncPropertiesOnSave>true</SyncPropertiesOnSave>
</ProductGroupChanges>
Response Information
Response Codes
- OK (200)
Resource Description
The HttpResponseMessage object.
HttpResponseMessage
| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |