Allows a user to submit a review for a store with feedback.
Request
Body Params application/json
{
"customerId": "string",
"customerName": "string",
"productId": "string",
"comment": "string",
"date": "string",
"rating": 0,
"reviewId": "string"
}
Request Code Samples
curl --location --request POST 'https://gateway.storeharmony.com/cloudapi/restro/review' \
--header 'Content-Type: application/json' \
--data-raw '{
"customerId": "string",
"customerName": "string",
"productId": "string",
"comment": "string",
"date": "string",
"rating": 0,
"reviewId": "string"
}'
Responses
*/*
Successfully submitted store review.
{
"success": true,
"message": "string"
}
Modified at 2025-03-27 14:31:04