Skip to content

Submit Feed to Amazon Marketplace (Legacy)

This task will submit any Amazon XML feed.

You may want to consider using the Import Feed to Amazon Marketplace (Legacy) task as an alternative to this one. Import Feeds encapsulates the whole process of submitting a feed to Amazon and getting back the results.

Amazon Settings

API Call Delay

Required
Specify the delay in milliseconds to use between calls to Amazon. Amazon throttle requests to their services, so if sending a large data set you may need to increase this limit.

Channels

Required
Choose at least one marketplace to send the XML feed to. For information about how Amazon handles feeds sent to multiple marketplaces, see Using Multiple Marketplaces.

Connection

Required
The Amazon Marketplace (Legacy) Connection to use. See the Connecting to Amazon Marketplace (Legacy) article if you require more information on how to create/manage connections.

Feed Settings

Feed Type

Required
Choose from the list of supported feeds for upload. We support all available types of the Feeds API.

File Settings

Input File

Required
The name of the file containing the data feed in XML format.

Output File

Optional
Optional output for the response of the upload.

Zynk Settings

See Common Task Settings.

Example

A sample input file is shown below. This contains data for the 'POST_PRODUCT_DATA' feed type.

<?xml version="1.0" encoding="utf-8"?>
<AmazonEnvelope xsi:noNamespaceSchemaLocation="amzn-envelope.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Header>
    <DocumentVersion>1.01</DocumentVersion>
    <MerchantIdentifier>M_IDENTIFIER_1234567</MerchantIdentifier>
  </Header>
  <MessageType>Product</MessageType>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>PartialUpdate</OperationType>
    <Product>
      <SKU>TEST001</SKU>
      <StandardProductID>
        <Type>EAN</Type>
        <Value>019965809665</Value>
      </StandardProductID>
      <Condition>
        <ConditionType>New</ConditionType>
      </Condition>
      <DescriptionData>
        <Title>China Glaze Ahoy Nail Polish Lacquer with Hardeners 14ml</Title>
        <Brand>China Glaze</Brand>
        <Manufacturer>China Glaze</Manufacturer>
      </DescriptionData>
    </Product>
  </Message>
</AmazonEnvelope>