Using an API to Send the CDXP Conversion Data
Sending conversion event to the Fullpath CDXP is as simple as one line of JS code. There's no need to install a special pixel as it's part of our tracking snippet. To send conversion events to the CDXP you should use the following JS function on the client site in the global scope:
AutoLeadStarEvent ("<API_Key>", "conversion", data); Where:
-
<API_KEY> is your AutoLeadStar API Key (vendors may request their unique API Key during initial integration discussion )
-
conversion is the event type, please leave as is.
-
data is a JSON object with the conversion information (see example below)
Example:
AutoLeadStarEvent ("<API_KEY>", "conversion", {
first_name: "John",
last_name: "Doe",
email: "john@fullpath.com",
phone: "123-456-8765"
});
Read here to how vendors using iframes on a Dealer site can send Fullpath conversion data.