All posts
GuideJul 8, 2026 · 9 min

How to Delete or Edit Your Developer Reply on Google Play

Yes, you can delete or edit a Google Play developer reply. The exact Console path, why a new reply overwrites the old, and what the API won't do.

RA

The Argus Team

Reply Argus

Yes — you can delete or edit a developer reply on Google Play, and it takes about thirty seconds. In Play Console, open your app, go to Ratings and reviews → Reviews, click the review, and use the controls on your existing reply: edit the text and re-send to overwrite it, or delete the reply to remove it entirely. A new reply always overwrites the old one. There's no version history and no thread, so editing and re-sending is really just deleting-and-replacing in one step.

The reason this question fills community threads instead of a clean help doc is that Google buries the delete control and never quite spells out the overwrite behavior. So here's the part the two-line answer skips: exactly where the buttons live, when to edit versus delete, the one thing deleting your reply does *not* do (spoiler: it can't touch the review), and why the Play Developer API can change your reply but flat-out refuses to delete it.

Can you actually delete a developer reply? Yes — here's where the button hides

There are three separate operations people mix up, and Google labels none of them clearly. Editing your reply overwrites the old text with new text. Deleting your reply removes your response so the review shows no developer answer at all. And deleting the review itself — that one you simply cannot do, ever, by any means. Keep those straight and the rest is clicks.

The catch is that the delete option is easy to miss. On the Reviews page your posted reply sits under the reviewer's text with an edit control right there; the delete action is tucked into the reply's options rather than shown as a big red button. That layout is exactly why searchers land on forum threads convinced the feature doesn't exist. It does — you're just looking for a pencil when you want the overflow.

  1. 1

    Step 1 — Open the review

    In Play Console, select your app, then open Ratings and reviews → Reviews. Find the review you replied to (filter by date or search a keyword if the list is long) and click to expand it. Your existing reply appears directly beneath the reviewer's text.

  2. 2

    Step 2 — To edit: change the text and re-send

    Use the edit control on your reply, rewrite it within the 350-character cap, and send. The new version overwrites the old one instantly. There is no draft state and no undo. The moment you send, that's the public reply.

  3. 3

    Step 3 — To delete: use the reply's options

    Open the options on your posted reply and choose to delete it. This removes your response only. If you can't find a delete action in your view, editing the reply down to a corrected message does the same practical job — it replaces whatever was there.

  4. 4

    Step 4 — Confirm what's live

    Refresh the review. An edited reply shows the new text; a deleted reply leaves the review with no developer response, as if you'd never answered. Either change reaches the public store listing within minutes, same as a fresh reply does.

There is no version history — the overwrite is permanent

Google Play keeps exactly one developer reply per review and no record of previous versions. Edit or delete and the old text is gone for good, for you and for everyone reading the listing. Copy your original somewhere first if you might want it back.

Editing is usually the smarter move than deleting

Most of the time you don't want a blank space where your reply was — you want a *better* reply. A deleted response leaves a low-star review sitting there with no answer, which reads worse to the next shopper than an imperfect reply would. So before you delete, ask whether an edit fixes it instead.

The classic case is a promise that aged badly. You told a furious reviewer the crash was "fixed in 2.3," then the fix actually shipped in 2.3.1. Don't delete — correct it. Reopen the review, edit the reply to name the version that's really live, and re-send. The reviewer who's still hitting the bug reads an accurate promise, and anyone browsing your listing sees a developer who keeps their word current.

English

Update killed my streaks. Opened the app and every stat reset to zero. Two years of history gone. Absolutely done.

Reply

You're right — the 5.4 update had a migration bug that reset visible streaks, and I'm sorry it wiped two years of progress on screen. Your history wasn't deleted, just detached. 5.4.2 (live now) reattaches it on next open. Still zeroed after updating? support@app.com and I'll restore it today. — Sam

That's the edited version of what might have started as a rushed "we're looking into it." It fits the 350-character cap, names the exact build, and makes one keepable promise — the reply you'd rather have live than a deleted blank. Delete only when the original reply is genuinely wrong or embarrassing and no edit rescues it. For the full craft of these, see [how to respond to negative app reviews](/blog/how-to-respond-to-negative-app-reviews).

What deleting your reply does NOT do

This is where most of the frustration in those forum threads lives, because people delete a reply expecting it to fix something it can't.

Deleting your reply does not delete the review. No Console setting, API, or third-party tool lets a developer remove or hide a user's rating and text — your only lever on a bad review is a good reply, never a delete. It also can't un-ring the bell: Google emailed the reviewer your reply the moment you first sent it, so deleting it later doesn't recall your original words from their inbox. And it won't move your star average, because a deleted reply changes nothing about the ratings feeding your recency-weighted score. If you want a higher rating, answer more reviews well — Google reported roughly a +0.7-star average lift for developers who respond (I/O 2019) — don't scrub the ones you already handled.

  • Delete your reply — allowed, Console-only, removes your response and leaves the review answer-blank.
  • Edit your reply — allowed, overwrites the old text with new, no history kept. This is the one you'll reach for most.
  • Delete the review itself — impossible for developers on Google Play. You can flag a review that breaks Google's policies for removal, but you can't delete it yourself.
  • Take back the notification — impossible. The reviewer got your reply by email when you first sent it; deleting it later doesn't recall that message.

Deleting or editing a reply through the Play Developer API

If you script your replies, here's the sharp catch: the Google Play Developer API can *change* a reply but it cannot *delete* one. There is a single `reviews.reply` method that sets the reply text, and calling it again on the same review overwrites the previous reply. That covers editing perfectly. There is no `reviews.delete`-reply endpoint at all — none exists in the v3 reference. To truly remove a reply, you have to open Play Console and delete it by hand.

One more constraint the docs mention only in passing: the Reviews API surfaces reviews from roughly the last seven days. A review that aged out of that window is unreachable programmatically — miss it for eight days and the API can't edit your reply on it either.

http
# Google Play Developer API v3 — the reply IS the edit
POST androidpublisher/v3/applications/{pkg}/reviews/{reviewId}:reply
     { "replyText": "..." }     # ≤ 350 chars; overwrites any existing reply

# There is NO delete-reply method. The API can create or overwrite
# a reply, never remove one. To delete a reply, use Play Console.
GET  androidpublisher/v3/applications/{pkg}/reviews            # list (≈ last 7 days)
GET  androidpublisher/v3/applications/{pkg}/reviews/{reviewId} # get one
Endpoint shapes only. reviews.reply both creates and edits; there is no API delete for replies.

Same mechanic, both stores — with one difference

The App Store works the same way for edits, but Apple's API *does* expose a DELETE for review responses, unlike Google's. The full store-by-store breakdown is in the [app review reply mechanics reference](/blog/app-review-reply-mechanics-reference), and the field-level detail is in the [Google Play reviews API reference](/blog/google-play-reviews-api-reference).

The real problem: keeping every reply correct at scale

Deleting one bad reply is easy. The hard version is the one that actually eats your week — a reply that promised the wrong version number across forty reviews after a hotfix, or a tone that landed badly in a language you don't read, sitting live on your listing until someone notices. At that point you're not deleting a reply; you're auditing a backlog, one overwrite at a time, inside the same Console UI that hides the button.

That's the seam [ReplyArgus](/features) is built for. It watches Google Play and the App Store in one inbox 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, so a draft already knows your product, your voice, and which version actually shipped. Every draft fits the 350-character cap, nothing publishes until you approve it (or until a rule you set does, by rating, keyword, language, or store), and edits go back out the same way. If you'd rather do it hands-on first, the full walkthrough is [how to reply to reviews in Google Play Console](/blog/how-to-reply-to-reviews-in-google-play-console).

Start free — Argus drafts and keeps your Play replies current

Connect your Google Play account and ReplyArgus surfaces every review, drafts an on-brand reply that fits the 350-character box, and lets you edit or approve in one click. Free plan, no card: [start free](/signup), or compare tiers on [pricing](/pricing).

Frequently asked

How do I delete a developer reply on Google Play?
Open Play Console, select your app, go to Ratings and reviews → Reviews, and click the review you answered. Use the options on your existing reply to delete it. This removes only your response — the reviewer's rating and text stay. The change reaches the public listing within minutes.
How do I edit a reply I already posted on Google Play?
Reopen the review in Ratings and reviews → Reviews, use the edit control on your reply, rewrite it within 350 characters, and re-send. The new text overwrites the old one instantly. Google Play keeps no version history, so the previous reply is gone once you send the edit.
Does a new reply overwrite my old one?
Yes. Google Play allows exactly one developer reply per review, so editing and re-sending replaces the previous text completely — there's no thread and no record of earlier versions. If you might want the original wording back, copy it before you edit.
Can I delete the review itself, not just my reply?
No. Developers cannot delete or hide a user's review on Google Play by any method. You can flag a review that violates Google's policies for possible removal, but you can't remove it yourself. Deleting or editing your reply is the only content you control.
Can I delete a reply through the Google Play API?
No. The Play Developer API's reviews.reply method creates or overwrites a reply but there is no delete-reply endpoint. Calling reply again edits the text; to actually delete a reply you must use Play Console. Note the API only reaches reviews from roughly the last 7 days.
Should I delete a reply or just edit it?
Edit it in almost every case. A deleted reply leaves a low-star review with no developer answer, which reads worse than a corrected one. Delete only when the original is genuinely wrong or embarrassing and no rewrite fixes it — otherwise overwrite it with a better, accurate reply.

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