Skip to content

Import Feedback into Yooz

This task will import feedback into Yooz, based on data provided via an XML file. This task is primarily used for importing payment information into Yooz.

Settings

Yooz Organisation Connection

Required
The Yooz organisation to connect to. See Connecting to Yooz.

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 Yooz. 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 <ExternalId> element in the XML.

Page Size

Required
The maximum number of records to send to the Yooz API in a single batch. Defaults to 100. Increasing this value may speed up the import, but will increase the chance of timeout errors occurring.

Zynk Settings

See Common Task Settings

Examples

A sample input file is shown below. For full documentation see Yooz Feedback XML.

<?xml version="1.0"?>
<Documents>
  <Document>
    <ExternalId>201322</ExternalId>
    <YoozNumber>2</YoozNumber>
    <Action>
      <Type>PAYMENT</Type>
      <PaymentDataItems>
        <PaymentDataItem>
          <Code>YZ_AMOUNT_PAID</Code>
          <Value>100.00</Value>
        </PaymentDataItem>
        <PaymentDataItem>
          <Code>YZ_DATE_OF_PAYMENT</Code>
          <Value>2023-08-22</Value>
        </PaymentDataItem>
      </PaymentDataItems>
    </Action>
    <MessagesToAdd>
      <MessageToAdd>
        <Level>Info</Level>
        <Values>
          <En>This is a message</En>
          <Fr>Ceci est un message</Fr>
          <De>Das ist eine Nachricht</De>
          <Default>This is a message</Default>
        </Values>
      </MessageToAdd>
    </MessagesToAdd>
  </Document>
</Documents>