PUT Catlog/ProductAttributeValue/Save?id={id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
ProductAttributeValueViewModelName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
StoreId | integer |
None. |
|
ProductAttributeId | integer |
Required |
|
Name | string |
Required Max length: 50 |
|
PriceAdjustment | decimal number |
None. |
|
IsUsePercentage | boolean |
None. |
|
IsPreSelected | boolean |
None. |
|
PictureUrl | string |
None. |
|
DisplayOrder | integer |
None. |
|
Published | boolean |
None. |
|
ModifiedBy | string |
None. |
|
ModifiedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "StoreId": 1, "ProductAttributeId": 2, "Name": "sample string 3", "PriceAdjustment": 4.0, "IsUsePercentage": true, "IsPreSelected": true, "PictureUrl": "sample string 7", "DisplayOrder": 8, "Published": true, "ModifiedBy": "sample string 10", "ModifiedDate": "2025-04-26T16:30:09.949203+01:00" }
application/xml, text/xml
Sample:
<ProductAttributeValueViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECommerce.Service.Catalog.ViewModel"> <DisplayOrder>8</DisplayOrder> <Id>1</Id> <IsPreSelected>true</IsPreSelected> <IsUsePercentage>true</IsUsePercentage> <ModifiedBy>sample string 10</ModifiedBy> <ModifiedDate>2025-04-26T16:30:09.949203+01:00</ModifiedDate> <Name>sample string 3</Name> <PictureUrl>sample string 7</PictureUrl> <PriceAdjustment>4</PriceAdjustment> <ProductAttributeId>2</ProductAttributeId> <Published>true</Published> <StoreId>1</StoreId> </ProductAttributeValueViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | 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. |