Modify stock/price for a product.

PATCH /api/v2/products/{sku}

Headers

  • apikey string Required

    Seller's apikey

Path parameters

Body Required

  • price integer

    product's price. Must be definied if 'stock' is not

  • stock integer

    product's stock. Must be definied if 'price' is not

Responses

  • modify stock/price for a product

PATCH /api/v2/products/{sku}
curl \
 -X PATCH https://sandbox-w6wvm5a-qhobd463uhz3w.eu-2.platformsh.site/api/v2/products/{sku} \
 -H "apikey: string" \
 -d '{"price":42,"stock":42}'
Request example
# Headers
apikey: string

# Payload
{
  "price": 42,
  "stock": 42
}