Skip to content

Importing Leads into Enapps

This task will create new leads in your Enapps account, from an XML file. The task does not support updating existing leads.

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.

Fail File

Required
The name of the file to write failed records to. The data will be output in the same XML format as the Input File. A sample can be found below.

Input File

Required
The name of the file containing the data you want to import into Enapps. The data must be in XML format, a sample of which is shown below.

Success File

Required
The name of the file to write successfully processed records to. The data will be output in the same XML format as the Input File. A sample can be found below.

Prevent Reprocessing

Required
Set to 'True' to prevent the same record being processed more than once. This works based on the value of the ExternalId element provided within the Input File.

Timeout

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

Zynk Settings

See Common Task Settings

Examples

The example XML below shows all the fields that can be provided when creating a lead in Enapps.

<?xml version="1.0" encoding="utf-8"?>
<Leads>
  <Lead>
    <ExternalId>123</ExternalId>
    <CompanyName>Zynk</CompanyName>
    <FirstName>John</FirstName>
    <LastName>Smith</LastName>
    <Email>[email protected]</Email>
    <Phone>01911234567</Phone>
    <Website>zynk.com</Website>
    <PartnerId>16</PartnerId>
    <PartnerRef>SFCPERSO-S</PartnerRef>
    <Mobile>07123456789</Mobile>
    <Street>6-8 Charlotte Square</Street>
    <Street2></Street2>
    <City>Newcastle upon Tyne</City>
    <County>Tyne &amp; Wear</County>
    <Zip>NE1 4XF</Zip>
    <Country>Great Britain</Country>
    <OptInPhone>false</OptInPhone>
    <OptInEmail>false</OptInEmail>
    <OptInPost>false</OptInPost>
    <Source>call</Source>
    <Industry>IT</Industry>
  </Lead>
</Leads>