Introduction

In this article you’ll learn how to transfer leads to FLG

Assumptions:

  • You have already collected your leads’ and customers’ information and now passing it into FLG.
  • Use a Webhook Node and set it up as shown below…

Please find sample payload below. Please add more fields as required.

<?xml version="1.0" encoding="UTF-8"?>
<data>
  <lead>
    <key>API KEY</key>
    <leadgroup>THIS IS A NUMBER</leadgroup>
    <site>THIS IS A NUMBER</site>
    <introducer>0</introducer>
    <reference>0</reference>
    <source>SOME SOURCE</source>
    <medium>0</medium>
    <term>0</term>
    <cost>0</cost>
    <value>0</value>
    <title></title>
    <firstname>{first_name}</firstname>
    <lastname>{last_name}</lastname>
    <company>{company_name}</company>
    <jobtitle></jobtitle>
    <phone1>{phone_number}</phone1>
    <phone2>{phone_number}</phone2>
    <email>{email}</email>
    <data1>{custom_field1}</data1>
    <data2>{custom_field2}</data2>
    <data3>{custom_field3}</data3>
    <data4>{custom_field4}</data4>
    <data5>{custom_field5}</data5>
    <data6>{custom_field6}</data6>
    <data7>{custom_field7}</data7>
  </lead>
</data>