Import Inventory and Pricing to Amazon Seller Central
This task allows you to update the available quantity and pricing of your listings on Amazon via an XML file.
Note
Amazon does not apply changes to the quantity and pricing immediately. It can take up to an hour for the new quantity and price to be reflected.
Settings
Amazon Seller Central Connection
Required
The Amazon Seller Central connection to use. See the Connecting to Amazon Seller Central article if you require more information on how to create/manage connections.
Marketplaces
Required
Choose a marketplace to send the data to. Please note that this task only allows you to select one marketplace. If you need to send a data to different marketplaces, you can specify this via the Marketplace
or MarketplaceId
attributes in the input file.
Fail File
Required
The name of the file to write failed records to. This will be written in the same XML format as the input file.
Input File
Required
The name of the file containing the data feed in XML format. A sample of the format is shown below.
Success File
Required
The name of the file to write successfully processed records to. This will be written in the same XML format as the input file.
Zynk Settings
See Common Task Settings.
Example
A sample input file is shown below.
<?xml version="1.0" encoding="utf-8"?>
<Listings>
<Listing>
<SellerId>M_IDENTIFIER_1234567</SellerId> <!-- Will be picked up from the connection if not specified -->
<SellerSku>RH-728W-FM8I</SellerSku>
<Inventory> <!-- Multiple 'Inventory' elements can be provided for different fulfillment channel codes -->
<FulfillmentChannelCode>DEFAULT</FulfillmentChannelCode>
<Quantity>3</Quantity>
<LeadTimeToShipMaxDays>1</LeadTimeToShipMaxDays>
<RestockDate>2024-07-01T00:00:00</RestockDate>
<IsInventoryAlwaysAvailable>false</IsInventoryAlwaysAvailable>
</Inventory>
<Pricing> <!-- Multiple 'Pricing' elements can be provided -->
<Currency>GBP</Currency>
<Marketplace>UK</Marketplace> <!-- Used to look up the marketplace ID -->
<MarketplaceId>A1F83G8C2ARO7P</MarketplaceId>
<StandardPrice>
<PriceIncludingTax>5.99</PriceIncludingTax>
<StartDate>2024-01-01T00:00:00</StartDate>
<EndDate>2028-01-01T00:00:00</EndDate>
</StandardPrice>
<MinimumSellerAllowedPrice>4.50</MinimumSellerAllowedPrice>
<MaximumSellerAllowedPrice>10.00</MaximumSellerAllowedPrice>
<DiscountedPrice>
<PriceIncludingTax>4.99</PriceIncludingTax>
<StartDate>2024-06-01T00:00:00</StartDate>
<EndDate>2024-07-01T00:00:00</EndDate>
</DiscountedPrice>
</Pricing>
</Listing>
</Listings>