Reply to Customer Review
asc_reply_to_reviewSubmit a developer response to a customer review. Fails if a response already exists, preventing duplicate replies.
Instructions
Create a developer response to a customer review. If a response already exists for the review, this will fail (use the App Store Connect UI or API to update/delete an existing response first).
Args:
reviewId (string, required): The customer review ID to respond to
responseBody (string, required): The response text (max 5970 characters)
Returns: { "id": string, // response ID "state": string, // e.g. "PENDING_PUBLISH", "PUBLISHED" "responseBody": string, "lastModifiedDate": string }
Error Handling:
Returns an error if the review already has a response
Returns "Error: Resource not found" if reviewId does not exist
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reviewId | Yes | The customer review ID to reply to. | |
| responseBody | Yes | The developer response text to publish (App Store Connect limit: 5970 characters). |