PUT v1/Shops/{shopId}/Product/ForeignPriceIncVAT
Update the Product price for a Shop. The price is in the default Shop currency, and is specified including VAT. An existing Product must be specified.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| shopId |
The Id of the Shop |
integer |
Required. |
Body Parameters
The new price
ShopProductPriceUpdateInput| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductCode | string |
None. |
|
| Price | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductCode": "sample string 1",
"Price": 2.0
}
application/xml, text/xml
Sample:
<ShopProductPriceUpdateInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ProductCode>sample string 1</ProductCode> <Price>2</Price> </ShopProductPriceUpdateInput>
Response Information
Resource Description
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. |