PATCH/reviews/{id}
Partially update review
Partial update — only provided fields change. Triggers `reviews.updated` webhook.
Parameters 1
| Name | Type | Description |
|---|---|---|
idrequired | path · integer | Resource identifier |
ReturnsReview
AcceptsReviewInput
Bearer token required
Response examples
200Review updated
{
"id": 1,
"productId": 1,
"userId": 1,
"rating": 4,
"title": "Works as advertised",
"body": "Great article! Really helped me understand the concept better.",
"isVerified": true,
"helpful": 1,
"createdAt": "2025-08-29T18:25:55.906Z"
}400400 — invalid input or malformed JSON
{
"error": {
"status": 400,
"message": "Request body required"
}
}404404 — resource not found
{
"error": {
"status": 404,
"message": "users #999 not found"
}
}