Headers

  • apikey string Required

    Seller's apikey

Body Required

  • sku string

    product's SKU

  • 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 list of products

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

# Payload
[
  {
    "sku": "string",
    "price": 42,
    "stock": 42
  }
]