Update Review
Update an existing product review.
Endpoint
PUT /api/reviews/update/?id={id}Request Body
Include only the fields you want to update.
See Create Review for field details.
Example
json
{
"content": "Updated review content.",
"rating": 4,
"published": false
}Response
json
{
"status": "success",
"data": {
"_id": "string",
"content": "Updated review content.",
...
}
}