Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6370637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:57:22+00:00 2026-05-25T00:57:22+00:00

The Question Is it possible to submit more than 1 item in an XML

  • 0

The Question

Is it possible to submit more than 1 item in an XML Product Feed to Google Merchant?

What I have so far

I have found an example in the Google Docs of a single “Data Item“:

<?xml version='1.0'?>
<entry xmlns="http://www.w3.org/2005/Atom" [...] >
    <app:control>
        <sc:required_destination dest="ProductSearch"/>
    </app:control>
    <title>Wool sweater</title>
    [...]
</entry>

What I’m after

I was expecting something like;

<?xml version='1.0'?>
<entries>
    <entry xmlns="http://www.w3.org/2005/Atom" [...] >
        [...]
    </entry>
    <entry xmlns="http://www.w3.org/2005/Atom" [...] >
        [...]
    </entry>
</entries>

Especially since XML is not meant to have more than 1 root element.

My Research

I have;

  • read the Merchant Center Help
  • read Google’s Content API for Shopping docs
  • searched on Google
  • searched on SO

all so far without success.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:57:22+00:00Added an answer on May 25, 2026 at 12:57 am

    Google provides two separate ways for managing items submitted to their Shopping platform (aka: Google Base). The original question appears to be a mix of the two different approaches:


    Google Merchant Center Feeds

    These are raw XML files which contain a series of items to be added to Google Base.

    The documentation here shows how to create an XML file with multiple items (Click “Feed Creation Issues” > “Atom 1.0”):

    <?xml version="1.0" encoding="UTF-8"?> 
    <feed xmlns="http://www.w3.org/2005/Atom" xmlns:g="http://base.google.com/ns/1.0"> 
        <title>The name of your data feed.</title> 
        [...] 
        <entry> 
            <title>Red wool sweater</title>
            [...]
        </entry>
        <entry> 
            <title>Blue bow</title>
            [...]
        </entry>
    </feed>
    

    Once this file is created with the correct attributes, you must upload it to Google’s servers.

    Bonus of this method: You can use the same XML file with TheFind’s service.


    Content API for Shopping

    This API uses XML as the body of a single call to Google’s API for insertion / update / deletion. The XML attributes (linked to as “Data Item” in the original question) are slightly different than the Merchant Center Feed attributes.

    Using this API, you can only talk to Google about a single item at a time, which is where the ‘entry’ example in the original question is correct:

    <?xml version='1.0'?>
    <entry xmlns="http://www.w3.org/2005/Atom" [...] >
        <app:control>
            <sc:required_destination dest="ProductSearch"/>
        </app:control>
        <title>Wool sweater</title>
        [...]
    </entry>
    

    This would be used as the body of an API call to Google, such as for inserting a new item:

    POST https://content.googleapis.com/content/v1/YOUR_MERCHANT_ID/items/products/schema
    Content-Type:  application/atom+xml
    Authorization: GoogleLogin auth=CLIENTLOGIN_TOKEN
    
    <?xml version='1.0'?>
    <entry xmlns="http://www.w3.org/2005/Atom" [...] >
        [...]
    </entry>
    

    Bonus of this method: You have fine grained control over every item and can insert / delete / update on a per-item basis rather than editing your entire Merchant Center Feed XML file for one small change.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible stupid question: let's say I have two apps contained within one project. Can
I have a form that submit a shopping cart to Google Checkout. The form
Possible Duplicate: Procedure to submit iPhone application to App Store? I know this question
I'm a beginner to PHP and I have a quick question. Is it possible
Question: Is it possible to construct a web page that has a script to
Question: Is is possible, with regex, to match a word that contains the same
Question Is it possible to get the version of the Java Plugin being used
Question: Is it possible in back end code (not in the code behind but
Question: Is it possible to compile a program on linux using a .dll file?
Possible duplicate question: Is there a way to indefinitely pause a thread? In my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.