View Buyer Comments

View comments made by the buyer.

Request

GET /seller/v2/content/comment
Name

Type

In

Description

contentId

string

body

Required. The unique 12-digit identifier of the app.

commentId

string

body

The identifier of the comment.

pageNo

integer

body

Default: 1. The page number to retrieve.

curl -i -X POST \
  -d" {"contentId": "000008084686", "commentId": "5501585", "pageNo": "1"} \
  "https://devapi.samsungapps.com/seller/v2/content/comment"

Response

Parameters

Name

Type

In

Description

contentId

number

body

The unique 12-digit identifier of the app.

totalCount

number

body

The total number of comments for the app.

pageNo

number

body

The page number that was retrieved.

totalPage

number

body

The total number of comment pages for the app.

comments[].commentId

string

body

The 7-digit identifier of the comment.

comments[].countryCode

string

body

Country code of the Galaxy Store in which the comment is registered.

comments[].buyerId

string

body

The partially obfuscated identifier of the buyer.

comments[].rating

integer

body

A value from 1 to 10. The rating given by the buyer, based on five stars. The value is equal to half a star (for example, a value of 2 is equal to a one-star rating).

The response is null if the buyer has not given this app a rating.

comments[].date

string

body

YYYY-MM-DD. The date the comment was registered by the buyer.

comments[].commentText

string

body

The comment the buyer registered.

comments[].countryName

string

body

The name of the country from which the app was purchased.

comments[].device

string

body

The type of device from which the comment was registered.

comments[].appVersion

string

body

The app version.

The response is null if the comment was registered while the app was installing or if the app was removed.

comments[].replyId

string

body

The identifier of your replay.

The response is null if you did not reply to the buyer's comment.

comments[].replyText

string

body

Your reply to the buyer's comment.

The response is null if you did not reply to the buyer's comment.

Success

{
  "resultCode": "0000",
  "resultMessage": "Ok",
  "data": {
    "contentId": "000005021191",
    "totalCount": 7,
    "pageNo": 1,
    "totalPage": 1,
    "comments": [
      {
        "commentId": "5501585",
        "countryCode": "USA",
        "buyerId": "adzc**",
        "rating": 8,
        "date": "2025-11-04",
        "commentText": "Four stars !!",
        "countryName": "USA",
        "device": "Galaxy S10",
        "replyId": "44323",
        "replyText": "Thank You"
      },
      {
        "commentId": "5501581",
        "countryCode": "USA",
        "buyerId": "qwer**",
        "rating": 8,
        "date": "2025-10-30",
        "commentText": "Good",
        "countryName": "USA",
        "device": "Galaxy S20"
      }
    ]
  }
}

See Failure response codes for a list of possible response codes when a request fails.