Google Manufacturer Center no longer accepts manual product edits — according to an email Google sent to account holders, the ability to add or update products directly in the console has been removed, and the Manufacturer Center API or a product file upload are now the only submission paths. Data submitted before July 9, 2026 stays in the account untouched.
If the headline sounds familiar, it should: we covered this change in one line inside our July 2026 Google Shopping reshuffle brief, alongside the same week’s other feed-ecosystem moves. That post is the news layer. This one is the part the news coverage skipped: what the two surviving submission paths actually involve, how to choose between them, and why disciplined feed-ops teams will barely feel this while hand-patchers face a genuine workflow rebuild.
Everything below is sourced from Google’s own developer and help documentation for Manufacturer Center, plus the Search Engine Roundtable report that first carried Google’s email. Where a claim rests on that forwarded email rather than a public Google page — including the July 9 date itself — we say so explicitly.
- 01Manual add and update in the UI is gone.Google emailed Manufacturer Center account holders confirming the manual product editor path has been removed. The stated alternatives: the Manufacturer Center API or a product file upload.
- 02Pre-cutover data is grandfathered.Google's email states that data submitted before July 9, 2026 remains in the account and requires no action. The change affects new and ongoing edits, not historical records — and the date is vendor-stated via that email, not a public Google announcement.
- 03Two paths remain: API or file feed.The REST API supports create, read, update, and delete on products and certifications, and auto-creates an input feed if none exists. File feeds accept Text/TSV or XML via one-off upload, scheduled fetch, Google Cloud Storage, or SFTP.
- 04Diagnostics already worked this way.Fixing flagged issues in Manufacturer Center has always meant correcting the feed and resubmitting — not editing in the UI. Teams that ran that discipline lose almost nothing; teams that hand-patched single SKUs lose their whole workflow.
- 05Do not borrow Merchant API numbers.The Manufacturer Center API is a separate product from the Merchant API / Content API for Shopping. No public rate-limit or quota figure exists for the Manufacturer Center API — any specific number you have seen belongs to the other product.
01 — The ChangeWhat changed on July 9, and how we know.
The change did not arrive as a blog post or a help-center rewrite. It surfaced when Menachem Ani, founder and CEO of the PPC agency JXT Group, posted a screenshot of Google’s email to Manufacturer Center account holders on X, and Search Engine Roundtable picked it up on July 16. The email confirms that the ability to manually add or update products directly in Manufacturer Center has been removed, and points affected users at two alternatives: the Manufacturer Center API, or uploading a product file.
One sourcing caveat matters enough to state plainly. As of this writing, Google’s own help center and announcements pages carry no public version of this notice — the July 9, 2026 cutover exists only in the emailed notice as reproduced by a third party. Treat the date as vendor-stated-via-forwarded-email, not as something you can point to on a Google-owned public page. Stranger still, Google’s “Manage your product data” help page still describes the manual product detail editor as if it were live. If you are reconciling what the help docs imply against what the email says, the email wins — but the docs lag is worth knowing about before you cite them internally.
This was not a surprise cutover for attentive account owners. Search Engine Roundtable’s Barry Schwartz noted that Google had been telegraphing the removal to users of the platform for some time before the email landed.
"By now, if you have been using Google Manufacturer Center - you should have received numerous warnings about this change."— Barry Schwartz, Executive Editor, Search Engine Roundtable, July 16, 2026
02 — The MapWhat changed vs. what didn’t.
The headline “manual edits removed” overstates how much of the submission surface actually moved. Of the paths into Manufacturer Center, exactly one is gone: typing product data into the console editor. Every file-based path survives — including the one-off manual file upload, which is still a manual workflow, just not a field-by-field one. The table below is the reference we could not find anywhere in the coverage: every submission path, its status on each side of the cutover, and who feels the difference.
| Submission path | Before July 9, 2026 | After | Who it affects |
|---|---|---|---|
| Removed at the cutover | |||
| Manual UI add / edit | Available via the in-console product editor | Removed — API or file feed only | Teams hand-patching one-off SKUs in the console |
| Unchanged — still open | |||
| File upload — one-off manual | Available | Still available | Small catalogs with infrequent, batched updates |
| File feed — scheduled fetch / GCS / SFTP | Available (FTP itself retired January 8, 2024) | Unaffected — the scale-friendly recurring path | Mature feed-ops teams with recurring pipelines |
| Manufacturer Center API | Available | Unaffected — now the only programmatic path | Large or complex accounts; automation and agent tooling |
| Diagnostics-driven fixes | Already required feed resubmission | Unchanged — still fix-in-feed and resubmit | Everyone maintaining product-data quality |
Read as a trend rather than an event, the table shows a multi-year direction, not a one-week decision. Google retired FTP uploads for Manufacturer Center on January 8, 2024 — announced back in September 2023 — leaving SFTP and scheduled fetch as the surviving push and pull mechanisms. July 2026 closes the manual editor. Each step removes a submission path that resists validation, automation, and audit, and keeps the ones that machines can drive end to end. That is the lens that makes the next two sections practical rather than academic: one of these two surviving paths is about to be your only workflow.
03 — Path OneThe API path: CRUD, auth, and auto-created feeds.
The Manufacturer Center API is a public REST API that lets applications interact directly with the platform — Google’s own documentation frames its value as “vastly increasing the efficiency of managing large or complex Manufacturer Center accounts.” That positioning matters: this API was built for scale operations, not as a replacement for casually editing one SKU. It exposes two distinct resource types, each with full create, read, update, and delete support.
Product
The core resource: product data — specs, titles, descriptions, images, rich content — managed programmatically with full CRUD operations. If you submit via the API and no input feed exists yet, Manufacturer Center automatically creates one for you.
ProductCertification
A separate resource type for product certifications, scoped to certification bodies rather than brand owners. Same CRUD verbs, different audience — most feed-ops teams will only ever touch the Product resource.
Getting to production is a three-stage ramp, per Google’s quickstart guide. First, you need a Manufacturer Center account — the API operates on it, it does not replace it. Second, you can test calls through the API Explorer with no code at all, which is the fastest way to confirm your account and data model before committing engineering time. Third, production use requires a Google API Console project with a service account.
The auth model has one step teams routinely miss: Google recommends OAuth 2.0 for initial exploration and a service account for ongoing production access — and that service account must be explicitly added as an authorized user inside the Manufacturer Center account itself. Skipping that grant is the classic “the API returns nothing and I don’t know why” failure. Google ships client libraries with documented Java and .NET samples, so most stacks are not starting from raw HTTP.
04 — Path TwoThe file-feed path: formats, delivery, and the six mandatory attributes.
If API integration is not on your roadmap, the file feed is the surviving alternative — and for many brand owners it is the pragmatic one, because it can piggyback on feed infrastructure you already run for Merchant Center. Per Google’s product-data documentation, bulk files must be prepared as Text/TSV or XML, and beyond the one-off manual upload into the console, three recurring delivery methods exist: scheduled fetch, where Google pulls the file from your server; Google Cloud Storage; and SFTP.
Text/TSV or XML
Bulk product files must follow Google's feed specification in one of two formats. Most feed platforms and in-house pipelines already emit TSV for Merchant Center, which transfers directly.
Scheduled fetch · GCS · SFTP
Three non-manual delivery methods keep feeds current without console work: Google pulls from your server on a schedule, or you push via Google Cloud Storage or SFTP. One-off manual upload remains for occasional batches.
FTP retired January 8, 2024
Google announced the FTP sunset in September 2023 and pulled it in January 2024, leaving SFTP and scheduled fetch standing. Legacy and manual submission paths have been narrowing for over two years — July 2026 is the latest step, not the first.
Whichever delivery method you pick, the content bar is the same — and it is stricter than Merchant Center’s for the equivalent fields. Per Google’s Manufacturer Center FAQs, every product must carry six mandatory attributes: GTIN, ID, brand, title, description, and image link. Every product needs both a distinct ID and a GTIN, no two products may share an identifier, and all GTINs must conform to GS1 standards. A single product may reuse the same value for both its GTIN and its ID, but uniqueness across products is absolute.
The shortcut most teams should evaluate first: an existing Merchant Center feed will populate Manufacturer Center correctly as long as it includes those six mandatory fields — Merchant-Center-only attributes in the file are simply ignored. If your core product-feed strategy already produces a clean Merchant Center feed, the file path into Manufacturer Center may be a routing change rather than a build.
05 — The DecisionAPI or file? Choose by operating model, not by headline.
The right path depends on catalog size, update frequency, and what you already run — not on which option sounds more modern. Four common operating models, and where each should land:
Frequent updates, many SKUs
Google positions the API explicitly for large or complex accounts. Full CRUD, auto-created input feeds, service-account auth, and client libraries make it the path that scales with catalog churn — and the only one agent tooling can drive directly.
Occasional, batched changes
A Text/TSV or XML file via one-off upload or scheduled fetch covers a stable catalog with periodic refreshes. No engineering project required; the discipline is keeping the file the single source of truth.
Reuse before you rebuild
A Merchant Center feed containing the six mandatory attributes populates Manufacturer Center correctly, with extra attributes ignored. Point the pipeline you already trust at a second destination before building anything new.
Managed feed platforms
Third-party feed-management platforms such as Feedonomics list Google Manufacturer Center among their supported destination channels — a managed alternative if in-house API integration is not worth the roadmap slot this quarter.
For the broader question of which attributes and automations are worth investing in across channels — not just this one console — our cross-channel feed-optimization decision matrix is the companion piece to this playbook.
06 — Data QualityDiagnostics were already feed-first.
Here is the reframe the headlines missed: for anyone maintaining data quality properly, Manufacturer Center was already a no-manual-edits product. The Diagnostics section — the console’s issue-flagging surface — has always resolved problems one way: fix the data in your feed and resubmit the feed. Google’s own guidance reads, “To fix the issues, correct the item issues in your feed and re-submit your feed.” Manual UI editing was never the sanctioned repair path for flagged issues.
Diagnostics distinguishes two issue tiers, and the difference determines urgency. Item issues — an invalid GTIN or brand, for example — disapprove the entire product from appearing at all. Attribute issues are gentler: the product stays live, but the specific flagged attribute is dropped and Google substitutes its own inferred value. An item issue is an outage; an attribute issue is a quiet erosion of the content you meant to control. Both get fixed the same way: in the feed, then resubmit.
That is why this change is lower-disruption than the headline suggests for mature operators and higher-disruption for everyone else. If your team treated the feed as the single source of truth and used Diagnostics as the fix queue, July 9 formalized your existing habit. If your team hand-patched single SKUs in the console — and reconciled the feed later, or never — the change removes the crutch entirely, and the same pattern is spreading across platforms: Microsoft Ads’ feed diagnostics push the identical fix-in-feed discipline.
07 — DisambiguationThis is not the Merchant API.
The vocabulary overlap here — feeds, quotas, product data — makes a specific mistake easy, and none of the news coverage bothered to head it off. Manufacturer Center and Merchant Center are different Google products with different APIs. Manufacturer Center manages brand-owner product data — specifications, images, rich content — that Google blends into Search, Shopping, and Images results. Merchant Center, and its Merchant API (the successor to the Content API for Shopping), manages the sellable listings and pricing that actually run as Shopping ads and free listings. A brand can live in both; the integrations are separate.
The practical trap is quota math. The Merchant API publishes documented limits — including product-update throttling — and it is tempting to assume the Manufacturer Center API inherits them. It does not, as far as anyone can show: no public rate-limit or quota figure for the Manufacturer Center API existed at the time of writing. If you are sizing an integration, budget conservatively, test against your own account, and do not copy a number from the Merchant API’s quota page into a Manufacturer Center design doc. It is a different product’s ceiling.
08 — Looking ForwardAPI-only is the interface agents were waiting for.
The forward-looking read: an API-first mandate is exactly the interface that agentic feed tooling is built to talk to. A manual console editor was never automatable — no agent could click through a product detail form at catalog scale, and no audit trail survived a human typing into a text box. A REST API with full CRUD, service-account auth, and machine-readable diagnostics is a different substrate entirely: an agent can detect a flagged GTIN, correct the record in the PIM, push the update, and verify the flag cleared — end to end, with every step logged. We laid out that architecture in our piece on agentic PIM and product-data agents; Manufacturer Center going API-only makes it strictly more relevant, because the escape hatch that undermined automated pipelines — someone quietly editing the console — no longer exists.
Our projection: expect more of Google’s feed surfaces to follow this trajectory, because every step in the two-year pattern — FTP retired in 2024, manual edits removed in 2026 — trades a human-friendly path for a machine-verifiable one. Teams that invest now in a single governed pipeline (PIM or feed platform as source of truth, API or scheduled feed as transport, diagnostics-driven repair loops) will absorb the next removal as a non-event too. If you want senior help designing that pipeline — or deciding whether API integration, a managed platform, or a Merchant-feed reroute is right for your catalog — our ecommerce engineering services and AI transformation engagements start with exactly this kind of feed-ops audit.
09 — ConclusionThe console closed. The pipeline is the product now.
Manual edits were the escape hatch. Now the pipeline is the only path.
Strip the headline down and the change is narrow: one submission path — typing into the console — is gone, and the two paths that were always the sanctioned ones at scale remain. Data submitted before July 9, 2026 stays put, per Google’s email. The API offers full CRUD on products and certifications and auto-creates input feeds; the file path takes Text/TSV or XML by upload, scheduled fetch, Cloud Storage, or SFTP; and an existing Merchant Center feed with the six mandatory attributes can serve double duty.
The deeper signal is the two-year pattern, not the single event. FTP in 2024, manual edits in 2026 — Google keeps removing the submission paths that resist validation and automation, and keeping the ones machines can drive. Diagnostics already worked feed-first; the console editor was a legacy convenience whose time ran out. Teams that treat the feed as the single source of truth were compliant with this change before it happened.
The move to make this week is an honest audit: does every product record in Manufacturer Center trace back to a governed pipeline, or are there SKUs whose only correct version lived in someone’s console edits? If it is the latter, the rebuild is not optional anymore — and building it API-first, with an agentic repair loop on top, turns a forced migration into the automation upgrade the manual editor was quietly blocking.