Skip to content

Import Direct Fulfilment Order Acknowledgements into Amazon Vendor Central

This task will import acknowledgements for direct fulfilment purchase orders from an XML file into Amazon Vendor Central.

Settings

Amazon Region

Required
Select which Amazon region you want to send data to or receive data from. If you need data for more than one region, you will need to add a separate copy of the task to your workflow for each region.

Amazon Vendor Central Connection

Required
The Amazon Vendor Central Connection to use. See the Amazon Vendor Central Connection article if you require more information on how to create/manage connections.

Fail File

Required
The XML file to output any records which failed to import to Amazon. The data will be stored in the same format as the input file.

Input File

Required
The XML file containing the records to import to Amazon. See below for an example input file.

Success File

Required
The XML file to output records which successfully import to Amazon. The data will be stored in the same format as the input file.

Prevent Reprocessing

Required
Set to true to prevent the a record with the same ExternalId value from being processed more than once.

Time To Wait (Mins)

Required
The length of time (in minutes) to wait for Amazon to process records. Any records that have not been processed within this time will be considered failed, and will appear in the Fail File. This value should only be increased from it's default value of 15 if you are experiencing delays with Amazon processing your data. The value can't be set lower than 15.

Zynk Settings

See Common Task Settings

Examples

A sample input file is shown below:

<?xml version="1.0" encoding="utf-8"?>
<OrderAcknowledgements>
  <OrderAcknowledgement>
    <ExternalId>202</ExternalId>
    <PurchaseOrderNumber>2JK3S9VC</PurchaseOrderNumber>
    <VendorOrderNumber>ABC</VendorOrderNumber>
    <AcknowledgementDate>2020-02-20T19:17:34.304Z</AcknowledgementDate>
    <AcknowledgementStatus>
      <Code>00</Code>
      <Description>Shipping 100 percent of ordered product</Description>
    </AcknowledgementStatus>
    <SellingParty>
      <PartyId>999US</PartyId>
    </SellingParty>
    <ShipFromParty>
      <PartyId>ABCD</PartyId>
    </ShipFromParty>
    <ItemAcknowledgements>
      <ItemAcknowledgement>
        <ItemSequenceNumber>00001</ItemSequenceNumber>
        <BuyerProductIdentifier>B07DFVDRAB</BuyerProductIdentifier>
        <VendorProductIdentifier>8806098286500</VendorProductIdentifier>
        <AcknowledgedQuantity>
          <UnitOfMeasure>Each</UnitOfMeasure>
          <Amount>1</Amount>
        </AcknowledgedQuantity>
      </ItemAcknowledgement>
    </ItemAcknowledgements>
  </OrderAcknowledgement>
</OrderAcknowledgements>