Skip to main content
PUT
/
v1
/
user
/
store
/
{storeId}
/
products
/
{productId}
Update Product
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"
}
'

Headers

Content-Type
string

Path Parameters

storeId
string
required
productId
string
required

Body

application/json

The body is of type object.

Response

200 - application/json

Successful response