Update Price

Update Price

put
Authorizations
Body
Responses
200
OK
application/json
put
PUT /api/v1/products/prices HTTP/1.1
Host: 
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 95

{
  "items": [
    {
      "sku": "my_sku_1",
      "price": {
        "country_code": "DE",
        "retail_price": 100,
        "sale_price": 80
      }
    }
  ]
}
{
  "batchRequestId": "123e4567-e89b-12d3-a456-426614174000"
}

Last updated

Was this helpful?