Modify stock/price for a product.

PATCH /api/v2/products/{sku}

Headers

  • apikey string Required

    Seller's apikey

Path parameters

application/json

Body Required

  • price integer

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

  • stock integer

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

Responses

  • modify stock/price for a product

  • Request bad formatted

PATCH /api/v2/products/{sku}
curl \
 --request PATCH 'https://bi.agora.place/api/v2/products/{sku}' \
 --header "Content-Type: application/json" \
 --header "apikey: string" \
 --data '{"price":42,"stock":42}'
Request examples
# Headers
apikey: string

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