Skip to content

Import Order Acknowledgements into Virtualstock

Overview

The Import Order Acknowledgements task allows you to automate the process of importing order acknowledgements from Virtualstock into your systems. This helps confirm the receipt and processing status of orders.

Settings

Connection

Required
Specify the Virtualstock connection you would like to use for this task.

Fail File

Required
Specify the file where failed records will be written.

Input File

Required
Specify the file that contains the records you wish to process.

Success File

Required
Specify the file where successful records will be written.

Prevent Reprocessing

Required
Enable this setting to prevent records from being processed more than once when using the ExternalId element.

Example

Please find a sample XML document below that you can use to import order acknowledgements into Virtualstock.

<OrderAcknowledgements>
  <OrderAcknowledgement>
    <ExternalId>12345678987654321</ExternalId>
    <OrderId>12345</OrderId>
    <OrderReference>12345678987654321</OrderReference>
    <Items>
      <Item>
        <PartNumber>123456789</PartNumber>
        <LineRef>1</LineRef>
        <Quantity>1</Quantity>
        <SubStatus>Pending</SubStatus>
        <SupplierDispatchDate>2024-05-24T00:00:00</SupplierDispatchDate>
        <SupplierDeliveryDate>2024-05-26T00:00:00</SupplierDeliveryDate>
        <Comment>A comment</Comment>
        <FulfillmentRoute>Direct to customer</FulfillmentRoute>
      </Item>
    </Items>
  </OrderAcknowledgement>
</OrderAcknowledgements>