Skip to content

Import Customer Pricing into Choco

This task will update the pricing associated with customers in Choco, based on data provided via an XML file.

Settings

Connection

Required
The Choco connection to use. See Connecting to Choco.

Fail File

Required
The XML file to save failed records to. The XML format will be the same as the input file.

Input File

Required
The XML file containing records to import into Choco. An example of the XML format is shown below.

Success File

Required
The XML file to save successful records to. The XML format will be the same as the input file.

Prevent Reprocessing

Required
Set to true to prevent the same records being processed more than once, based on the value of the <ZynkExternalId> element in the XML.

Zynk Settings

See Common Task Settings

Examples

A sample input file is shown below. For full documentation see Choco Customer Pricing XML.

<?xml version="1.0"?>
<CustomerPricings>
  <CustomerPricing Operation="Upsert">
    <ZynkExternalId>123456</ZynkExternalId>
    <CustomerId>58482754-b9b9-46a8-b4eb-4a33a415cf61</CustomerId>
    <CustomerNumber>ZYNK0001</CustomerNumber>
    <Prices>
      <Price>
        <ProductId>4be1163f-28c1-4572-a99c-172caa12b4a4</ProductId>
        <ExternalId>PE23</ExternalId>
        <Unit>Each</Unit>
        <Currency>GBP</Currency>
        <Amount>0.25</Amount>
      </Price>
      <Price>
        <ProductId>b39a9d18-ef9f-4242-ab35-de2cc1dced39</ProductId>
        <ExternalId>HSYE</ExternalId>
        <Unit>Pack</Unit>
        <Currency>GBP</Currency>
        <Amount>6.00</Amount>
      </Price>
      <Price>
        <ProductId>49a3f774-19ec-48b4-a5f9-e7bb6accd28c</ProductId>
        <ExternalId>3SF3</ExternalId>
        <Unit>Pack</Unit>
        <Currency>GBP</Currency>
        <Amount>5.00</Amount>
      </Price>
    </Prices>
  </CustomerPricing>
</CustomerPricings>