Skip to content

Exporting Products from Enapps

This task will export product information from your Enapps account to an XML file.

Settings

Enapps Connection

Required
The Enapps connection to use. See the Connecting to Enapps article if you require more information on how to create/manage connections.

Additional Fields

Optional
A list of additional field names to include in the export from Enapps. They will be output to the CustomFields element in the XML.

Export Settings

Required
Settings to control whether new, modified or all records will be exported from Enapps. The following options are available:

  • Date Created - The date to use when exporting new records. Records created since this date will be exported. The date will update automatically each time the task runs.
  • Date Modified - The date to use when exporting modified records. Records updated since this date will be exported. The date will update automatically each time the task runs.
  • Export New, Modified or All Records - Choose whether the task should export new, modified or all records.

Timeout

Optional
The length of time to wait for responses from the Enapps API. If not specified, the timeout will default to 100 seconds.

Output File

Required
The name of the file to export the data to. The data will be output in XML format, a sample of which is shown below.

Zynk Settings

See Common Task Settings

Examples

Sample output file:

<?xml version="1.0" encoding="utf-8"?>
<BasicProducts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BasicProduct>
    <Id>4664</Id>
    <CustomFields>
      <CustomField>
        <key>available_to_sell</key>
        <value>1095</value>
      </CustomField>
    </CustomFields>
    <DefaultCode>PENC0001</DefaultCode>
    <Name>Pencil Case</Name>
    <FamilyId>
      <Id>3</Id>
      <Name>Stationary</Name>
    </FamilyId>
    <ListPrice>6.99</ListPrice>
    <LastModified>2025-01-24T09:48:45.58284</LastModified>
    <CreateDate>2024-10-08T09:33:35</CreateDate>
    <ParameterIds />
    <Currency>GBP</Currency>
  </BasicProduct>
  <BasicProduct>
    <Id>4670</Id>
    <CustomFields>
      <CustomField>
        <key>available_to_sell</key>
        <value>3</value>
      </CustomField>
    </CustomFields>
    <DefaultCode>SHAR0001</DefaultCode>
    <Name>Pencil Sharpener</Name>
    <FamilyId>
      <Id>3</Id>
      <Name>Stationary</Name>
    </FamilyId>
    <ListPrice>2.49</ListPrice>
    <LastModified>2024-11-27T11:44:59.16707</LastModified>
    <CreateDate>2024-11-07T08:28:04</CreateDate>
    <ParameterIds />
    <Currency>GBP</Currency>
  </BasicProduct>
</BasicProducts>