How to Reply to Reviews in the Samsung Galaxy Store
Yes, you can reply to Samsung Galaxy Store reviews. Open Seller Portal, go to Buyer Comments, hit Add Reply. One reply per comment, up to 1,400 bytes.
The Argus Team
Reply Argus
Yes, you can reply to Samsung Galaxy Store reviews. Sign in to Samsung Seller Portal, open Assistance > Buyer Comments, find the review, and click Add Reply. Your response posts publicly under that user's comment. The catch worth knowing up front: you get exactly one reply per comment, and the reply is capped at 1,400 bytes, not 1,400 characters, which matters a lot if you're answering in Korean or Japanese.
The Galaxy Store is the third store most developers forget they're on. If you ship an Android APK to Samsung devices, you have a listing, a rating, and a stream of buyer comments in the Seller Portal that nobody is reading. Here's how to answer them, the rules Samsung enforces, the API if you want to automate it, and an honest note on where Galaxy Store fits next to Apple and Google.
The one-line version
Samsung Seller Portal > Assistance > Buyer Comments > Add Reply. One public reply per comment, max 1,400 bytes, editable. You can also export every rating and comment to CSV from the same screen, or post replies through the Content Publish API.
Where are the reviews in Seller Portal?
Samsung splits your feedback into two things that look alike but aren't. Ratings are the star scores with no text; buyer comments are the reviews with an actual written complaint or compliment attached. You can only reply to the second kind, and both live under the same menu.
In Seller Portal, go to Assistance > Buyer Comments. You'll see every written review across all your apps, filterable by app, country, and star rating, alongside the ratings-and-statistics view for the aggregate picture. On a company account, replying is a permission a manager grants per-person, so a teammate may see the comments but not the Add Reply button until they're assigned the role.
How do I actually post a reply?
The flow is short once you're on the Buyer Comments screen. Here's the whole thing end to end.
- 1
Step 1 — Open Buyer Comments
In Seller Portal, go to Assistance > Buyer Comments. Pick the app from the filter and, if you're triaging, sort by low star ratings first so the reviews that hurt your average surface at the top.
- 2
Step 2 — Find the comment
Each row shows the star rating, the review text, the country, and the date. Click into the one you want to answer. Ratings with no text can't be replied to; you need a written comment for the reply box to exist.
- 3
Step 3 — Click Add Reply
Hit Add Reply and type your response in the box. Keep it under 1,400 bytes. If you're writing in a language with multibyte characters, that budget shrinks fast, so watch the length rather than the character count.
- 4
Step 4 — Submit
Save the reply. It posts publicly beneath the user's comment on the Galaxy Store listing. There's one reply per comment, so make it count. You can't stack a second response later, only edit the one you posted.
- 5
Step 5 — Export for the record
From the same Buyer Comments screen you can download a CSV of the ratings and comments shown. Pull it periodically so you have your review history outside the portal and can cluster the recurring themes.
One reply per comment — no do-overs
Samsung gives you a single reply slot per comment. If you fire off a rushed 'sorry, please email us' you've spent your one shot, and the best you can do afterward is edit that same reply. Write the real answer the first time: name the fix, name the build, give them the next step. Treat every reply like it's permanent, because functionally it is.
Updated on my Galaxy S24 and now the app crashes the second I open the camera tab. Was fine last week.
Thanks for the exact detail — crash on the camera tab right after the latest update points to a rendering bug on One UI 6.1, and the fix is in review now, shipping as 3.2.1. Once it lands, force-close and reopen and the camera tab should hold. If it still crashes, email support@ with your device and we'll pull the logs and sort it directly. Sorry for the week of hassle.
That reply names the device, the OS version, the build, and the next step, all inside the byte budget. It's the same shape of reply that works on any store: acknowledge, diagnose specifically, point to the fix, offer an escape hatch. If the review is a rough one and you want the full playbook for turning a one-star into an edit, [how to respond to negative app reviews](/blog/how-to-respond-to-negative-app-reviews) breaks down exactly what earns the rating bump.
What are the actual rules and limits?
Galaxy Store's reply mechanics sit somewhere between Apple's and Google's, and the specifics are easy to trip over. The ones that bite:
- One reply per comment. Unlike an email thread, you get a single response slot. You can edit it, but you can't add a follow-up reply, so don't waste it on a holding message.
- 1,400 bytes, not characters. Samsung's documented cap is 1,400 bytes. For plain English that's roughly 1,400 characters, but a Korean or Japanese reply can eat two to three bytes per character, so your usable length can drop to a few hundred characters. Galaxy Store skews heavily toward Korea, so this is a real constraint, not a footnote.
- Ratings without text can't be answered. A bare three-star with no comment has no reply surface. Only written buyer comments get an Add Reply button.
- CSV export is built in. From Buyer Comments you can download the displayed ratings and comments as a CSV, handy for archiving, clustering themes, or feeding them into whatever tracker your team already uses.
- Replies are public. Your response shows under the comment on the live listing, visible to every future visitor, which is the whole point: you're writing for the next hundred readers, not just the one reviewer.
Can I reply to Galaxy Store reviews with an API?
You can. Samsung's Content Publish API exposes an endpoint for posting a reply to a buyer comment programmatically, which is how you'd wire replies into your own tooling instead of clicking through the portal. You authenticate with a Seller Portal access token, then POST the app's content ID, the comment ID, the country code, and your reply text.
POST https://devapi.samsungapps.com/seller/v2/content/comment/reply
Authorization: Bearer <access-token>
Content-Type: application/json
{
"contentId": "000000123456",
"commentId": "<comment-id>",
"countryCode": "KR",
"replyText": "Thanks for flagging the camera crash — fix ships in 3.2.1."
}The API mirrors the portal's rules: one reply per comment, same byte limit. It's the right tool for internal automation, but maintaining a Galaxy Store pipeline yourself (token refresh, pagination, de-duping, sizing replies to the byte cap per language) is a project, not an afternoon. For a cross-store view of which stores expose what, [the app review reply mechanics reference](/blog/app-review-reply-mechanics-reference) lays out the endpoints and limits side by side.
How does Galaxy Store compare to Apple and Google?
Worth being honest about priorities. For most developers the Galaxy Store is a smaller slice of installs than the App Store or Google Play, so spend reply effort proportionally. But the case for replying is strong on every store that allows it. Google reported at I/O 2019 that developers who respond see an average lift of about 0.7 stars. A study of over four million reviews by Hassan et al. found users were roughly six times more likely to raise their rating after a developer replied (4.4% versus 0.7% with no reply), and McIlroy et al. (IEEE, 2017) found that when a rating changed after a response, 38.7% of those changes were increases. Those studies ran on Apple and Google data, but the behavior of a reviewer feeling heard and revising up isn't platform-specific.
The rules do differ by store, though, and if you split time across all three it pays to know them cold. Google Play caps replies at a hard 350 characters and lets you edit freely; Apple publishes no official character limit (community testing suggests a few thousand characters) and notifies the reviewer when your reply posts; Samsung gives you 1,400 bytes and one reply per comment. We mapped the whole matrix in [reply rules for every app store](/blog/reply-rules-for-every-app-store), and put the two biggest stores head-to-head in [App Store vs Google Play review replies](/blog/app-store-vs-google-play-review-replies).
This is the point where doing it by hand quietly stops happening. Two live stores plus Samsung, in more than one language, week after week, is a lot of reading and re-typing, and the store you're least likely to keep up with is the third one. So here's the straight version of where [ReplyArgus](/features) fits: it watches your Apple App Store and Google Play reviews in one inbox and drafts a grounded, on-brand reply for each written review in the reviewer's own language (100+ supported, both directions), already sized to each store's limit, with approve-in-a-click or opt-in rule-based auto-publish. It does not connect to the Samsung Galaxy Store today. We only claim the two stores we actually publish to, and Samsung isn't one of them. What it buys you is time: automating the two stores that carry most of your reviews frees you to give the Galaxy Store the manual pass it still needs, instead of neglecting all three.
The shortcut
Keep the Galaxy Store on a weekly manual pass in Seller Portal: reply to the comments that name a bug, export the CSV, cluster the themes. Then let ReplyArgus take the two stores that generate most of your volume: every App Store and Google Play review gets a drafted reply in the reviewer's language, sized to each store's limit, so those never go cold while your attention is on Samsung.
Frequently asked
- Can you reply to reviews in the Samsung Galaxy Store?
- Yes. Sign in to Samsung Seller Portal, go to Assistance > Buyer Comments, open the review, and click Add Reply. Your response posts publicly under the user's comment. You get one reply per comment, up to 1,400 bytes.
- Where do I find buyer comments in Samsung Seller Portal?
- Go to Assistance > Buyer Comments. That screen lists every written review across your apps with its star rating, country, and date, and includes the ratings-and-statistics view. You can filter by app and rating, reply to individual comments, and export everything shown to a CSV.
- What is the character limit for a Galaxy Store reply?
- Samsung's documented cap is 1,400 bytes, not characters. In plain English that's roughly 1,400 characters, but languages with multibyte characters like Korean or Japanese use two to three bytes each, so your usable length can be a few hundred characters. Watch the byte length, not the character count.
- Can I reply to a Galaxy Store review more than once?
- No. Samsung allows one reply per buyer comment. You can edit the reply you posted, but you can't add a second, separate response later. Write the complete answer the first time rather than posting a placeholder.
- Is there an API to reply to Samsung Galaxy Store reviews?
- Yes. The Content Publish API exposes POST /seller/v2/content/comment/reply, which takes the app's content ID, the comment ID, a country code, and your reply text, authenticated with a Seller Portal access token. It follows the same one-reply-per-comment and 1,400-byte rules as the portal.
- Does ReplyArgus support the Samsung Galaxy Store?
- No. ReplyArgus watches and replies to the Apple App Store and Google Play only. It does not connect to the Galaxy Store today, so Samsung reviews still need a manual pass in Seller Portal. ReplyArgus drafts every App Store and Google Play reply in the reviewer's own language and sizes it to each store's limit.
So the answer is yes, and it's a two-minute job per review once you know the path: Seller Portal, Buyer Comments, Add Reply, one shot, 1,400 bytes. Give the Galaxy Store the manual attention it deserves, and stop letting your Apple and Google reviews pile up while you're doing it. [Start free with ReplyArgus](/signup) (no card) and Argus drafts your first App Store and Google Play reply in minutes, so the stores that carry most of your volume run themselves while you keep Samsung on a tidy weekly pass.
Try it
Let Argus draft your next reply.
Watch it answer a real review in your voice. 10-day trial, no card to begin.
Keep reading
App Store Reviews Not Showing? The Full Fix List for Apple and Google Play
App Store or Google Play reviews not showing? Here's every real cause — moderation delay, wrong country storefront, filtering, rating lag, cache — and the fix.
Read moreAre App Store Reviews Fake? How to Spot Them and What to Do
Yes, some App Store and Google Play reviews are fake — but fewer survive than you think. How to spot them, and what to do when they hit your app.
Read more