---
title: "Post a reply to a review"
method: POST
path: "/comments"
tags: ["Reviews"]
---

# Post a reply to a review

`POST /comments`

This endpoint lets you reply to a given review.

## Request body

- object — Request body to post a reply
  - `review_id` number, required — ID of the review you want to reply
  - `parent_id` number — The id of the parent comment you want to reply Works only for Facebook comments, since it's possible to reply to a comment (depth max is 2). Google and TripAdvisor don't accept this behaviour.
  - `content` string, text, required — Content of your reply
  - `reply_template_id` number — ID of the reply template to use
  - `reply_suggestion` object — Suggestion details for the reply, check how to retrieve values in the [Fetch AI reply suggestion for reviews](/api-reference/reviews/fetch-ai-reply-suggestion-for-reviews) section.
    - `reply_suggestion_id` number — ID of the reply suggestion
    - `reply_suggestion_modified` boolean — Indicates if the suggestion was modified

## 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)
