Export Orders from Amazon Seller Central
This task will provide a list of new or modified orders in XML format.
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 at least one marketplace to export orders from.
Export Buyers
Required
Set to True to export information about the buyer who purchased each order, including the buyer name, company name and purchase order number. Defaults to True.
Export Cancellations
Required
Set to True to export cancellation information applied to each order and order items. Defaults to False.
Export Expenses
Required
Set to True to export the cost information about each order and order items. Defaults to False.
Export Financial Events
Required
Set to True to export the financial events associated with each order. Defaults to False.
Export Fulfillments
Required
Set to True to export information about how each order and order items are processed and shipped. Defaults to False.
Export Packages
Required
Set to True to export information about shipping packages and tracking. Defaults to False.
Export Proceeds
Required
Set to True to export the revenue and financial breakdown for each order and order items. Defaults to True.
Export Promotions
Required
Set to True to export the discount and promotional offer details applied to each order and order items. Defaults to False.
Export Recipients
Required
Set to True to export information about the recipient to whom each order is delivered. Defaults to True.
Export Settings > Date Created
Required
The rolling dates to export new orders from, per region. This will automatically update each time the task runs. TIP: If you want to re-export old orders, change this setting to an earlier date.
Export Settings > Date Modified
Required
The rolling dates to export updated orders from, per region. This will automatically update each time the task runs. TIP: If you want to re-export old orders, change this setting to an earlier date.
Export Settings > Export New or Modified
Required
Choose whether to export new or modified orders from Amazon.
Fulfilled By
Required
Filters the export based on whether the order is merchant fulfilled (FBM) or Amazon fulfilled (FBA). The following options are available:
- ALL- Both FBM and FBA orders will be exported.
- AMAZON - Only export orders that are fulfilled by Amazon (FBA).
- MERCHANT - Only export orders that are fulfilled by the seller (FBM).
Defaults to ALL.
Fulfillment Status
Required
Filters the export based on the order fulfillment status.The following options are available:
- ALL - Exports all orders regardless of fulfillment status.
- UNSHIPPED
- PARTIALLY_SHIPPED
- SHIPPED
- CANCELLED
- PENDING
- UNFULFILLABLE
- PENDING_AVAILABILITY
- INVOICE_UNCONFIRMED
Order IDs
Optional
Optionally provide a specific Amazon order ID or list of IDs to export. Multiple IDs can be specified in the form of a comma separated list.
Specifying order IDs will override the Export Settings.
Start Date
Optional
The initial date to start exporting orders from. Any orders placed before this date will not download, even if they are updated. This can be used to prevent orders which have already been processed manually from being export.
Output File
Required
The name of the file to export the downloaded orders to.
Zynk Settings
See Common Task Settings.
Examples
Sample output file:
<?xml version="1.0" encoding="utf-8"?>
<Orders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Order>
<OrderId>123-1234567-1234567</OrderId>
<OrderAliases>
<OrderAlias>
<AliasId>123-1234567-1234567</AliasId>
<AliasType>SELLER_ORDER_ID</AliasType>
</OrderAlias>
</OrderAliases>
<CreatedTime>2026-03-09T11:20:11.125Z</CreatedTime>
<LastUpdatedTime>2026-03-10T00:11:52.113Z</LastUpdatedTime>
<Programs>
<Program>AMAZON_BUSINESS</Program>
</Programs>
<SalesChannel>
<ChannelName>AMAZON</ChannelName>
<Marketplace>UK</Marketplace>
<MarketplaceId>A1F83G8C2ARO7P</MarketplaceId>
<MarketplaceName>Amazon.co.uk</MarketplaceName>
</SalesChannel>
<Buyer>
<BuyerName>John Smith</BuyerName>
<BuyerCompanyName>Zynk Software Ltd</BuyerCompanyName>
<BuyerPurchaseOrderNumber>123-123456</BuyerPurchaseOrderNumber>
</Buyer>
<Recipient>
<DeliveryAddress>
<Name>John Smith</Name>
<AddressLine1>Office 16</AddressLine1>
<AddressLine2>6-8 Charlotte Square</AddressLine2>
<AddressLine3></AddressLine3>
<City>Newcastle upon Type</City>
<PostalCode>NE4 1XF</PostalCode>
<CountryCode>GB</CountryCode>
</DeliveryAddress>
</Recipient>
<Proceeds>
<GrandTotal>
<Amount>13.91</Amount>
<CurrencyCode>GBP</CurrencyCode>
</GrandTotal>
</Proceeds>
<Fulfillment>
<FulfillmentStatus>SHIPPED</FulfillmentStatus>
<FulfilledBy>AMAZON</FulfilledBy>
<FulfillmentServiceLevel>EXPEDITED</FulfillmentServiceLevel>
<ShipByWindow>
<EarliestDateTime>2026-03-10T23:59:59Z</EarliestDateTime>
<LatestDateTime>2026-03-10T23:59:59Z</LatestDateTime>
</ShipByWindow>
</Fulfillment>
<OrderItems>
<OrderItem>
<OrderItemId>12345678901234</OrderItemId>
<QuantityOrdered>1</QuantityOrdered>
<Product>
<Asin>B00JBIF7FA</Asin>
<Title>Ideal Standard Univalve Servicing Kit No Finish</Title>
<SellerSku>IS-USK001</SellerSku>
<Price>
<UnitPrice>
<Amount>13.91</Amount>
<CurrencyCode>GBP</CurrencyCode>
</UnitPrice>
</Price>
</Product>
<Proceeds>
<ProceedsTotal>
<Amount>13.91</Amount>
<CurrencyCode>GBP</CurrencyCode>
</ProceedsTotal>
<Breakdowns>
<Breakdown>
<Type>ITEM</Type>
<Subtotal>
<Amount>11.59</Amount>
<CurrencyCode>GBP</CurrencyCode>
</Subtotal>
</Breakdown>
<Breakdown>
<Type>TAX</Type>
<Subtotal>
<Amount>2.32</Amount>
<CurrencyCode>GBP</CurrencyCode>
</Subtotal>
<DetailedBreakdowns>
<DetailedBreakdown>
<Subtype>ITEM</Subtype>
<Value>
<Amount>2.32</Amount>
<CurrencyCode>GBP</CurrencyCode>
</Value>
</DetailedBreakdown>
</DetailedBreakdowns>
</Breakdown>
</Breakdowns>
</Proceeds>
<Fulfillment>
<QuantityFulfilled>1</QuantityFulfilled>
<QuantityUnfulfilled>0</QuantityUnfulfilled>
</Fulfillment>
</OrderItem>
</OrderItems>
</Order>
</Orders>