All posts
GuideJul 8, 2026 · 9 min

Reply Rules for Every App Store: Character Limits, APIs, and Notifications

The reference nobody built: how to respond to reviews on all app stores — Apple, Google Play, Amazon, Samsung, Huawei, Microsoft — reply mechanism, char limit, API, and what the reviewer sees.

RA

The Argus Team

Reply Argus

You can reply to reviews on most major app stores — Apple, Google Play, Samsung, Huawei, and Microsoft all let a developer respond — but the mechanism, the character limit, the API, and what the reviewer sees on the other end change with every single one. Amazon is the exception: it retired developer replies entirely in December 2020, so on the Amazon Appstore you can read reviews but not answer them.

There's no single table on the web that lays this out honestly, so here it is. Below is every store where reviews live, how you actually post a reply, the character cap (documented or not), whether there's a real API to automate it, and whether the person who wrote the review ever finds out you responded. If you ship one app across several storefronts, this is the cheat sheet for knowing where a reply is even possible before you waste an afternoon hunting for a button that doesn't exist.

Which app stores let you reply to reviews at all?

Start with the short answer, store by store. Each line below is one row of the reference: where the reply gets typed, the character limit, whether an API exists, and the notification behavior. The stores that matter most for reach, Apple and Google, sit at the top; the rest trail off into portals you'll rarely open.

  • Apple App Store — Reply in App Store Connect (My Apps → Ratings and Reviews) or via the App Store Connect API. Char limit: Apple publishes none; community testing has suggested a few thousand characters. One response per review, editable anytime, and only the latest version shows. Notification: the reviewer is notified and can update their review (per Apple's own docs).
  • Mac App Store — Same pipe as iOS. It runs through the exact same App Store Connect account and the same API, with the same unpublished limit and the same reviewer notification. If you ship on both, one reply flow covers desktop and mobile — there's no separate Mac console.
  • Google Play — Reply in Play Console or via the Google Play Developer API (`reviews.reply`). Char limit: a hard 350 characters, including spaces — paste more and it won't post. Notification: the reviewer gets an email containing your reply. Ratings have been recency-weighted since Google I/O 2019.
  • Amazon AppstoreNo reply, full stop. Amazon retired developer responses to customer reviews on December 16, 2020. There's no portal button and no reply API today. You can monitor incoming reviews, but you cannot answer them on-store.
  • Samsung Galaxy Store — Reply in Seller Portal (Assistance → Buyer Comments). Char limit: not publicly documented. One reply per comment, with a bulk 'Select and Reply' and saved canned responses. No widely documented public reply API — it's portal-driven, so automation means a human in the dashboard.
  • Huawei AppGallery — A genuine reply API exists: the AppGallery Connect Comments API lets you fetch reviews and post one reply per comment (replies to a reply can be edited). You can also reply inside AppGallery Connect directly. Notification quirk: your reply only becomes public once the underlying comment is approved.
  • Microsoft Store (Windows) — Reply in Partner Center. A Store Services REST API for review responses exists on paper, but Microsoft's own guidance points developers to the dashboard because the API has been unreliable. Treat it as portal-first.
  • Microsoft Edge Add-ons — Reply in Partner Center (Extension overview → Reviews). Char limit: 1 to 1,000 characters. Replies appear on the public listing in roughly 15–20 minutes. Microsoft explicitly says use the dashboard — the reviews API 'is currently not in a working state.'

Amazon is a monitor-only store now

If a competitor tool or a vendor claims it can 'publish replies to the Amazon Appstore,' be skeptical — the feature was removed on December 16, 2020 and hasn't returned. Anything that touches Amazon reviews today is reading them, not answering them. The same honesty test applies to Steam, Trustpilot, and the Chrome Web Store: watch and draft, but there's no developer-reply surface to publish into.

Where do the character limits actually bite?

The two stores you'll reply to most have the widest gap in constraint. Google Play is the strict one: 350 characters, hard-capped, counted with spaces and punctuation. That's less than this paragraph. It forces a discipline — acknowledge, give the fix, one next step — that turns out to make replies better, not worse. When researchers ranked what makes a developer response likely to move a rating, the top predictor was the length ratio between the review and the reply, not politeness or speed (Srisopha et al., EASE 2021). A tight response proportional to the complaint beats a padded one.

Apple is the loose one, and also the unsettled one. Apple publishes no official character limit for App Store responses; community testing has floated numbers in the low thousands (one figure often cited is ~5,970, another ~10,240), but Apple states none, so don't design against a hard number that isn't documented. Practically, if you write a single reply meant to fit both stores, size it for Google Play's 350 — it's the tighter, real constraint. Microsoft Edge Add-ons sits in the middle at a clean, documented 1–1,000.

Only Google Play's limit is a published fact

Of every store here, Google Play's 350 characters is the one hard number Apple, Samsung, and Huawei all decline to publish. When you see a confident '5,970-character Apple limit' stated as gospel, it's community lore, not an Apple spec. Build for the documented cap and hedge the rest.

Which stores have a real reply API?

This is the line that separates 'you can automate replies' from 'someone lives in a dashboard.' Three stores expose a working, documented API you can post a reply through: Apple's App Store Connect API, Google's Play Developer API, and Huawei's AppGallery Connect Comments API. The shape is similar across the first two — authenticate, target a review by id, POST the response text.

http
# Google Play — reply to one review (hard 350-char body)
POST https://androidpublisher.googleapis.com/androidpublisher/v3/
     applications/{packageName}/reviews/{reviewId}:reply
Content-Type: application/json

{ "replyText": "Fixed in 4.2.1, live now. Update and reopen — reply here if it persists." }

# Apple App Store Connect — create/replace a response (no published limit)
POST https://api.appstoreconnect.apple.com/v1/customerReviewResponses
Content-Type: application/json

{ "data": { "type": "customerReviewResponses",
    "attributes": { "responseBody": "Thanks for flagging this — shipped a fix in 15.2." },
    "relationships": { "review": { "data": { "type": "customerReviews", "id": "{reviewId}" } } } } }
Illustrative shapes for the two APIs most teams automate. Apple's endpoint creates or replaces; only your latest response is shown.

The other stores are portal-bound. Samsung's replies happen in Seller Portal with a bulk-select helper, but there's no widely documented public reply endpoint. Microsoft's Store Services API technically has a review-response method, yet Microsoft steers you to Partner Center because it's been flaky, and the Edge Add-ons reviews API is openly described as not in a working state. So in practice: Apple, Google, and Huawei can be driven by machine; Samsung and Microsoft mean a person in a browser tab; Amazon means nothing at all. If you're evaluating an aggregator that claims 'reply from one dashboard' across all of these, ask specifically which stores it *publishes* to versus which it only *monitors* — the honest ones, like [AppFollow](/vs/appfollow), are clear about the split.

What happens to the reviewer when you reply?

The notification behavior is the part most teams never check, and it changes how much a reply is worth. On the App Store, Apple notifies the reviewer when you respond and gives them a one-tap path to update their review, which is the whole mechanism behind the 'replying raises ratings' effect. On Google Play, the reviewer receives an email containing your reply, so even a public-facing response lands in a private inbox. Huawei is the odd one: your reply only goes public after the comment itself is approved, so there can be a lag before anyone sees it.

That notification loop is why replying is worth the effort at all. When Google introduced recency-weighted ratings at I/O 2019, it reported that responding to reviews correlates with an average lift of 0.7 stars. Academic work backs the direction: across 4.5 million reviews, users who got a response were roughly six times more likely to raise their rating than those who didn't (4.4% vs 0.7%, Hassan et al.). The reply doesn't just answer one person — it nudges a notified reviewer back toward the store, and it reassures the next hundred people reading before they install. We unpack that causal chain in [does replying to app reviews raise your rating](/blog/does-replying-to-app-reviews-raise-your-rating), and if the harder problem is simply *hearing* about new reviews fast enough to reply, that alerting layer (Slack, Telegram, email) lives in [our integrations](/integrations).

Crashes on launch after the update. Pixel 8, Android 14. Was fine last week.

Reply

Sorry about the crash — that was a 4.2 bug on some Android 14 phones, fixed in 4.2.1, live now. Update and reopen; reply here with your model if it persists and we'll jump on it.

That reply runs under 180 characters, comfortably inside Google Play's 350, and it would post unchanged on Apple, Samsung, or Edge Add-ons too. Design to the tightest documented cap and one reply travels across every store that accepts one. The store-by-store differences, including this exact character gap, get the full treatment in [App Store vs Google Play review replies](/blog/app-store-vs-google-play-review-replies).

Doing this across stores, in every language, without a portal-hopping afternoon

Knowing the rules for eight stores is one thing; actually posting replies across them — each under the right cap, each in the reviewer's own language, none of them lapsing during a busy week — is where it falls apart. [ReplyArgus](/features) watches your Apple App Store and Google Play reviews in one inbox and drafts a reply for each, already sized to that store's limit and grounded in your past approved replies and store listing. You approve in a click, or opt in to auto-publish clean 5-star replies so the queue never backs up.

So which stores should you actually staff?

Be honest about reach. For most apps, Apple and Google are where the reviews — and the ratings that drive installs — actually accumulate, and they're the two stores with reliable reply APIs and reviewer notification loops. That's exactly where ReplyArgus publishes: Apple App Store and Google Play, in one inbox, in 100+ languages. We're deliberately clear that we don't publish to Samsung, Huawei, Microsoft, or Amazon — nobody credibly auto-publishes to Amazon, because Amazon killed the feature. If those secondary stores carry real volume for you, budget a monthly pass through each portal by hand; automate Apple and Google first, and treat Samsung or Huawei as a cleanup rather than a daily fire.

Frequently asked

Which app stores let you respond to reviews?
Apple App Store (and Mac App Store), Google Play, Samsung Galaxy Store, Huawei AppGallery, the Microsoft Store, and Microsoft Edge Add-ons all let developers reply to reviews. Amazon Appstore does not — it retired the feature on December 16, 2020. Steam, Trustpilot, and the Chrome Web Store have no developer-reply surface either.
What is the character limit for app store review replies?
Google Play caps replies at a hard 350 characters, including spaces. Microsoft Edge Add-ons allows 1–1,000. Apple publishes no official limit — community testing suggests a few thousand characters, but Apple states none, so don't treat any single number as fact. Samsung and Huawei don't publish a limit. Design to Google's 350 and one reply fits everywhere.
Can you reply to Amazon Appstore reviews?
No. Amazon retired developer responses to customer reviews on December 16, 2020, and hasn't restored them. There's no reply button and no reply API. You can monitor Amazon reviews, but you can't answer them on-store — so ignore any tool that claims to 'publish' replies there.
Which app stores have a reply API?
Three have working, documented reply APIs: Apple's App Store Connect API (customerReviewResponses), Google's Play Developer API (reviews.reply), and Huawei's AppGallery Connect Comments API. Samsung is portal-only, and Microsoft's review-response APIs exist but are unreliable enough that Microsoft points developers to Partner Center instead.
Does the reviewer get notified when a developer replies?
On the App Store, yes — Apple notifies the reviewer and lets them update their review in one tap. On Google Play, the reviewer receives an email containing your reply. On Huawei AppGallery, your reply only becomes public after the comment is approved. That notification loop is why replying correlates with rating lifts.
Can one tool reply across all app stores at once?
Not honestly — because most stores don't allow it. The only stores with reliable reply APIs are Apple, Google, and Huawei; Samsung and Microsoft are portal-bound; Amazon has no reply at all. ReplyArgus publishes to the two stores that cover most installs, Apple App Store and Google Play, from one inbox in 100+ languages, and is explicit that the rest are monitor-or-manual.

That's the whole map: eight storefronts, three real APIs, one hard character cap, and one store that quietly took the feature away. Keep the reference handy, automate the two stores where reach and APIs both live, and give the long tail a scheduled manual pass. [Start free with ReplyArgus](/signup), no card required, and Argus drafts your first Apple and Google Play replies in minutes, each one sized to the store's limit and written in the reviewer's own language.

Try it

Let Argus draft your next reply.

Watch it answer a real review in your voice. 10-day trial, no card to begin.

See the features or pricing.

Keep reading