Headers

  • apikey string Required

    Seller's apikey

application/json

Body Required

  • sku string

    product's SKU

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

  • Request bad formatted

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

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