All posts
GuideJul 8, 2026 · 9 min

The App Review Reply Reference: Every Mechanic, Both Stores

Char limits, who can reply, one-reply rule, edits, notifications, and API windows for App Store and Google Play — the whole reference in one page.

RA

The Argus Team

Reply Argus

Here's the whole reference in one breath: Google Play caps a developer reply at a hard 350 characters, Apple publishes no official limit at all, both stores give you exactly one public reply per review, that reply is editable forever, and both notify the reviewer the moment you post. Everything else — who's allowed to reply, when it goes live, what the APIs will and won't touch — sits underneath those five facts. Bookmark this and stop guessing.

Most of what trips people up isn't the reply itself; it's the plumbing around it. A teammate whose role doesn't include the reply button. A reply truncated because nobody knew the cap was 350. A review that vanishes from the API before anyone answered it. So we'll go mechanic by mechanic — permissions, character limits, the one-reply rule, edit and delete, notifications, timing, and API windows — accurate to 2026, with honest hedges where Apple documents no number.

Who's actually allowed to reply?

Replying is a permission, not a default. The person staring at a nasty one-star may not be the person with the button, and a role mismatch is the quietest way a review sits unanswered for a week.

On the App Store, per Apple's role documentation, the roles that can respond to customer reviews are Account Holder, Admin, App Manager, Marketing, and Customer Support. The Customer Support role exists largely for this one job. Developer and Finance cannot respond. On Google Play, replying is governed by the granular "Reply to reviews" permission, which an owner or admin grants per app or account-wide, so a support contractor can answer reviews without touching releases or finance.

  • App Store Connect — can respond: Account Holder, Admin, App Manager, Marketing, Customer Support.
  • App Store Connect — cannot respond: Developer, Finance (they see reviews; the reply action is greyed out).
  • Google Play Console — needs the "Reply to reviews" permission, grantable per app or account-wide, independent of release and financial access.
  • Scoping lesson: both stores let you narrow who replies to which app — mirror that in whatever tool sits on top, or a viewer ends up publishing for you.

Per-app scoping matters the moment more than one person touches reviews — "who can hit send" is a real safety control. It's the principle behind ReplyArgus roles: a drafter writes but never publishes, a viewer reads and never consumes a seat. For the store-by-store differences, see [App Store vs Google Play review replies](/blog/app-store-vs-google-play-review-replies).

How many characters do you actually get?

This is the most-searched mechanic, and where a confident wrong answer does real damage. The two stores aren't symmetric, and only one publishes a number.

  • Google Play: a hard 350 characters. Documented and enforced — the console and the Reviews API both reject a reply over 350 characters, and spaces and punctuation count. Write for it deliberately; don't discover it at character 351.
  • Apple: no official limit. Apple publishes no character cap for review responses anywhere. Community testing suggests a few thousand characters (numbers floating around include roughly 5,970 and 10,240), but no source is authoritative — treat any hard figure as folklore, not fact.
  • Both: shorter lands better regardless of the ceiling. A reply read in five seconds on a phone earns more edits than a wall of text, and 350 characters is plenty to name the bug, own it, and offer a fix.

Write to the tighter cap and you're safe everywhere

Draft every reply to fit Google's 350 characters and it'll never truncate on either store — Apple's larger room is a bonus, not a requirement. That's the discipline behind a good [350-character review reply](/blog/write-a-350-character-review-reply): the constraint makes the writing sharper.

One reply per review — and yes, you can edit it

On both stores the model is identical: one public developer response per review, not a thread. You get a single reply that represents you, with no back-and-forth chat. The reviewer holds one slot too, so neither side stacks new entries.

But that slot isn't frozen. On the App Store you can edit or delete your response anytime; on Google Play you can update it, overwriting the old one. So if you promised a fix in version 4.2 that actually shipped in 4.2.1, go correct your own reply. The reviewer, and everyone reading the listing later, sees only the current version.

  • One response per review, both stores — a reply, not a thread. Choose your words like they're the only ones you get, because they are.
  • Editable anytime — App Store lets you edit or delete; Google Play lets you update, overwriting the old reply. Fix stale promises, don't leave them.
  • The reviewer holds one slot too — they can rewrite their rating and text anytime, and your reply is the strongest nudge to do so. See the [rating math](/blog/does-replying-to-app-reviews-raise-your-rating).
  • Deleting your reply is silent — it removes your response, not the review. Neither store lets a developer delete or hide a review.

Does the reviewer get notified?

Yes, and this is the mechanic that makes replying worth the effort at all. Google Play emails the reviewer your response with the reply text included; Apple notifies the reviewer and surfaces the option to update their review. Either way, someone who had moved on gets tapped on the shoulder at the moment they're deciding whether you deserve to keep their one star.

This is why the research is so consistent. Google reported roughly a +0.7-star average lift for developers who respond (I/O 2019), and Hassan et al. found reviewers who got a response were about 6x more likely to raise their rating (4.4% versus 0.7%) across 4.5 million reviews. The notification is the delivery mechanism for all of it. To make the alert land on your side too, see [get notified of new App Store reviews](/blog/get-notified-of-new-app-store-reviews).

Moderation and timing — when does the reply go live?

Replies aren't instant-and-guaranteed the way a comment on your own site is. Both stores run responses through moderation and can hold or remove a reply that violates content policy, so timing is "usually quick, occasionally delayed, always subject to content rules."

A reply typically appears within minutes to a few hours, so don't treat it as a real-time chat. Keep replies free of profanity, personal data, and anything that reads as a violation. And because AI-drafted replies are allowed as long as a human is accountable for what publishes, the moderation risk is about content, not authorship. We cover that line in [is AI review reply against App Store policy](/blog/is-ai-review-reply-against-app-store-policy).

The API windows: what automation can and can't reach

Reply at any real volume and you're eventually touching the APIs, each with a shape you design around. The most important quirk lives on Google's side.

http
# Google Play Developer API — reviews
GET  androidpublisher/v3/applications/{pkg}/reviews        # list (≈ last 7 days only)
GET  androidpublisher/v3/applications/{pkg}/reviews/{id}   # get one
POST androidpublisher/v3/applications/{pkg}/reviews/{id}:reply
     { "replyText": "..." }                                # 350-char cap enforced

# App Store Connect API — review responses
GET    v1/apps/{id}/customerReviews                        # list reviews
POST   v1/customerReviewResponses                          # create a response
PATCH  v1/customerReviewResponses/{id}                     # edit a response
DELETE v1/customerReviewResponses/{id}                     # delete a response
Endpoint shapes only; check each store's current reference for exact fields and auth.

Google's 7-day window is the trap

Google's Reviews API surfaces reviews left in roughly the last week — older reviews drop out of the API's reach, and so does your ability to reply to them programmatically. Miss a review for eight days and automation can't rescue it. That's why polling has to be reliable, not weekly. The full field-level detail is in the [Google Play reviews API reference](/blog/google-play-reviews-api-reference) and the [App Store Connect reviews API reference](/blog/app-store-connect-reviews-api-reference).

The App Store Connect API is friendlier on time — reviews don't expire out of a window the same way — but it's still a build: JWT auth, paging, rate limits, and the CRUD above. Between the two you're maintaining two auth models, two data shapes, one hard cap, and one silent expiry window, all so a reply goes out on time. That's the unglamorous reality behind "just reply to your reviews."

A reply that fits every rule on this page

Put the mechanics together — 350 characters, one shot, notification-triggered, editable — and the target is a reply that's tight, specific, and true:

Latest update logged me out and now the app crashes the second it opens. Lost access to everything. Uninstalling.

Reply

A crash-on-open after the 5.1 update is exactly the failure you're describing, and I'm sorry it locked you out. It's fixed in 5.1.1, live now — update and your account and data come right back, nothing was lost. Still stuck? Email support@app.com and I'll get you in today. — Priya

That reply fits under 350 characters, names the version, echoes the reviewer's own words, owns the failure, and makes one keepable promise. It'll never truncate on either store, and when the notification pulls the reviewer back, they read proof someone found their exact problem. The mechanics don't write the reply — they define the box it fits in, and a reply that ignores the box gets truncated, delayed, or ignored.

Doing all of this without becoming a full-time platform admin

Every mechanic here is knowable. The hard part is honoring all of them at once — two stores, whatever language the reviewer wrote in, during the exact week a bad update triggers a spike of one-stars and the 7-day window is closing on reviews nobody got to. That's the seam where hand-managing reviews quietly breaks.

That's the gap [ReplyArgus](/features) closes. It watches both stores in one inbox, so the 7-day window never lapses, and drafts each reply in the reviewer's own language — 100+ languages, both directions — grounded in your past approved replies and an auto-ingested knowledge base of your store listing. Nothing publishes until you approve it, or until a rule you set does (by rating, keyword, language, or store), and role controls decide who can hit send. It's the plumbing of this whole reference, handled, and reachable from your own tools over the [MCP connector](/agentic-tools).

Start free — Argus drafts your first on-brand reply in minutes

Connect a store and ReplyArgus surfaces every review still in reach, drafts a reply that fits every rule on this page, and lets you approve in one click. Free plan, no card: [start free](/signup), or compare tiers on [pricing](/pricing).

Frequently asked

What's the character limit for a developer reply?
Google Play enforces a hard 350-character limit, counting spaces and punctuation. Apple publishes no official limit; community testing suggests a few thousand characters, but no number is authoritative. Draft to 350 and your reply is safe on both stores.
Who can reply to app reviews?
On the App Store, the Account Holder, Admin, App Manager, Marketing, and Customer Support roles can respond; Developer and Finance cannot. On Google Play, you need the granular "Reply to reviews" permission, which an owner or admin grants per app or account-wide.
Can I reply to a review more than once?
No — both stores allow exactly one public developer response per review, not a thread. You can edit that response anytime (App Store lets you edit or delete; Google Play lets you update, overwriting the old reply), but you can't stack multiple replies.
Does the reviewer get notified when I reply?
Yes. Google Play emails the reviewer your response with the reply text included, and Apple notifies the reviewer and offers them the option to update their review. That notification is what reopens the review and gives them the chance to raise their rating.
Is there a time window on replying via the API?
On Google Play, yes — the Reviews API surfaces reviews from roughly the last 7 days, so older reviews fall out of programmatic reach. The App Store Connect API doesn't expire reviews the same way. Reliable polling keeps the Google window from closing on you.
Can I delete a review I don't like?
No. You can delete or edit your own reply, but neither store lets a developer delete or hide a reviewer's review. The only lever you have on a bad review is a good reply — which is why these mechanics matter.

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