curl --request PUT \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/products/{productId} \
--header 'Content-Type: application/json' \
--data '
{
"title": "Updated Product Title",
"description": "Updated description",
"price": 39.99,
"status": "ACTIVE"
}
'Update an existing product. Requires MANAGE_PRODUCTS permission.
curl --request PUT \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/products/{productId} \
--header 'Content-Type: application/json' \
--data '
{
"title": "Updated Product Title",
"description": "Updated description",
"price": 39.99,
"status": "ACTIVE"
}
'