curl --request POST \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/products \
--header 'Content-Type: application/json' \
--data '
{
"title": "Sample Product",
"description": "A sample product for testing",
"price": 29.99,
"status": "ACTIVE"
}
'Create a new product. Requires MANAGE_PRODUCTS permission.
curl --request POST \
--url https://storekit.samarthh.me/v1/user/store/{storeId}/products \
--header 'Content-Type: application/json' \
--data '
{
"title": "Sample Product",
"description": "A sample product for testing",
"price": 29.99,
"status": "ACTIVE"
}
'