Add Reply to Buyer Comment

Reply to a comment made by the buyer.

Request

POST /seller/v2/content/comment/reply
Name

Type

In

Description

contentId

string

body

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

commentId

string

body

Required. The identifier of the comment.

countryCode

string

body

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

replyText

integer

body

Your reply to the buyer's comment. Your reply can be up to 1,400 bytes.

curl -i -X POST \
  -d" {"contentId": "000005021191", "commentId": "5501581", "countryCode": "KOR", "replyText": "Test"} \
  "https://devapi.samsungapps.com/seller/v2/content/comment/reply"

Response

Success

{
   "resultCode": "0000",
   "resultMessage": "Ok"
}

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