Modify stock/price for a list of products.
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
}
]