⚠️ Reply to a review
reviews_create_review_answer_v1Publish a public seller answer to a customer review. Requires review ID and message text; the answer becomes visible once moderated.
Instructions
Publishes a seller answer to a review (reviews_create_review_answer_v1). WARNING: the answer is PUBLIC — once moderated it is visible to everyone on the profile page. Requires reviewId (from reviews_get_reviews_v1) and the message text; returns the id of the created answer and a timestamp. Confirm the action with the user. To delete an answer, use reviews_remove_review_answer_v1.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reviewId | Yes | ID of the review the answer is published for. Taken from the id field in reviews_get_reviews_v1. | |
| message | Yes | Text of the public answer to the review (must not be empty). Goes through moderation before publication. | |
| dryRun | No | v0.7.0: if true — returns a preview of the HTTP request without calling the Avito API. Safe for inspecting exactly what would be done. Default: the value of AVITO_MCP_DRY_RUN_DEFAULT (usually false). | |
| idempotencyKey | No | v0.7.0: optional key for duplicate protection. A repeat call with the same key within AVITO_MCP_IDEMPOTENCY_TTL_SEC returns the cached result. The same key with different args returns a conflict error — this is safe by design. |