curl --request PATCH \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/products/{productId}/stock/adjust \
--header 'Content-Type: application/json' \
--data '
{
"adjustment": -5,
"reason": "Order fulfillment"
}
'Adjust product stock by a positive or negative amount. Requires MANAGE_PRODUCTS permission.
curl --request PATCH \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/products/{productId}/stock/adjust \
--header 'Content-Type: application/json' \
--data '
{
"adjustment": -5,
"reason": "Order fulfillment"
}
'