# Reply to Review

## PUT /reply

Reply to a review using API.\
Submitting the same `reviewId` again updates the existing reply.

### Request

```
PUT https://app.cloutly.com/api/v1/reply

{
  "replyMessage": "Thanks for your feedback.",
  "reviewId": "cbd42728-9c56-4485-813c-4c85d1e64cf4"
}
```

### Response

```json
{
  "data": {
    "done": true,
    "message": "Reply successful"
  },
  "error": {
    "message": ""
  }
}
```

### Notes

* Check `data.done` instead of relying on status code alone for provider-side delivery outcome.
* Some replies can fail due to source limitations or re-auth requirements.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cloutly.com/reviews-sdk-for-marketplace-websites/rest-api/submit-review.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
