Update product
documentedUpdate an existing product’s data (name, price, stock, attributes, shipping, etc.).
PUT /api/v3/{storeId}/products/{productId}Productsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://app.ecwid.com/api/v3/{{$storeId}}/products/{{$productId}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "subtitle": "{{$subtitle}}", "description": "{{$description}}", "price": {{$price}}, "compareToPrice": {{$compareToPrice}}, "categoryIds": [{{$categoryId}}], "sku": "{{$sku}}", "inStock": {{$inStock}}, "weight": {{$weight}}}'