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

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
shopId

The Id of the Shop

integer

Required.

Body Parameters

The new price

ShopProductPriceUpdateInput
NameDescriptionTypeAdditional 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

Response Codes

  • OK (200)
  • NotFound (404)

Resource Description


HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.