---
title: "Modify a reply to a review"
method: PUT
path: "/comments/{comment_id}"
tags: ["Reviews"]
---

# Modify a reply to a review

`PUT /comments/{comment_id}`

This endpoint lets you modify a given reply to a review.

## Path parameters

- `comment_id` integer, required — Comment id

## Request body

- object — Request body to modify a reply
  - `content` string, text, required — Content of your Reply

## Response `200`

OK

- Comment — Reply to a review
  - `id` integer — Comment id
  - `partner_id` string — Review id on publisher
  - `created` string, datetime — Creation date on Partoo
  - `author_name` string — The author name of the review. **Note:** Replies don't have an author.
  - `content` string — Reply content
  - `date` string, datetime — Comment date
  - `update_date` string, datetime — Comment update date. Only specified if the comment was updated
  - `can_edit` boolean — If the current user can or cannot edit a reply **Note:** This applies on Facebook replies only. A reply left by an external user on Facebook cannot be edited.
  - `review_id` integer — Review id
  - `parent_id` integer — id of the parent comment. Is only specified if the comment is a reply to another comment **Note:** This applies on Facebook replies only.
  - `user_id` string — User id of the comment author
  - `is_reply_suggestion` boolean — If AI reply suggestion was used to generate this comment
  - `replies` Comment[] — List of replies to this comment

## Other responses

- `401` — You are not authenticated
- `403` — You are not allowed to perform this action
- `404` — Resource does not exist

---

[API](https://skmtc.net/partoo/apis/partoo-rest-api.md) · [All operations](https://skmtc.net/partoo/apis/partoo-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/partoo/partoo-rest-api/revisions/3652d8b1a8b3/schema)
