---
title: "Update review"
method: PUT
path: "/user/reviews/{id}"
tags: ["user-reviews"]
---

# Update review

`PUT /user/reviews/{id}`

Revise an existing authored review.

Use this endpoint when a user edits rating/comment after posting.

Rules:
- Caller must be the original author.
- Reviews are single-revision only; additional revisions return `409`.
- Updated content is sanitized before persistence.

Side effects:
- Recalculates and persists reviewed-user rating aggregates when rating changes.

## Path parameters

- `id` string, required — Review ID

## Request body

- ReviewUpdateInput — Input for updating a review
  - `rating` integer, required — Rating between 1 and 5
  - `content` string — Optional textual feedback

## Response `200`

Review

- AuthoredReview — Review authored by the user
  - `id` string, required — Unique identifier for the review
  - `rating` integer, required — Rating given in the review
  - `content` string — Optional textual feedback
  - `revisions` integer, required — Number of times the review has been revised
  - `source` object, required — Source associated with the review
    - `id` string, required
    - `type` 'ORDER', required
  - `reviewedUser` object, required — User that the review is about
    - `id` string, required — Unique identifier for the user
    - `username` string, required — Public username of the user
    - `joined` string, date-time — ISO timestamp when the user account was created
    - `avatar` string, uri — URL to the user's avatar image
    - `cover` string, uri — URL to the user's cover image
    - `profile` string — Information about the user
    - `reviews` integer, required — Total number of reviews the user has received
    - `rating` number, required — Confidence-based rating between 0 and 5
    - `score` number, required — Average rating between 0 and 5
    - `sales` integer, required — Total number of sales the user has made
    - `purchases` integer, required — Total number of purchases the user has made
  - `createdAt` string, nullable — Timestamp when the review was created

## Other responses

- `404` — Review not found
- `409` — Review already revised

---

[API](https://skmtc.net/managem/apis/managem-api.md) · [All operations](https://skmtc.net/managem/apis/managem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/managem/managem-api/versions/5ed45d6a9e2f/schema)
