- HTTP request
- Path parameters
- Request body
- Response body
- Authorization scopes
- ReviewReplyResult
- Try it!
Replies to a single review, or updates an existing reply.
HTTP request
POST https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/reviews/{reviewId}:reply
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
packageName |
Package name of the app. |
reviewId |
Unique identifier for a review. |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "replyText": string } |
Fields | |
---|---|
replyText |
The text to set as the reply. Replies of more than approximately 350 characters will be rejected. HTML tags will be stripped. |
Response body
Response on status of replying to a review.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"result": {
object ( |
Fields | |
---|---|
result |
The result of replying/updating a reply to review. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/androidpublisher
ReviewReplyResult
The result of replying/updating a reply to review.
JSON representation |
---|
{
"replyText": string,
"lastEdited": {
object ( |
Fields | |
---|---|
replyText |
The reply text that was applied. |
lastEdited |
The time at which the reply took effect. |