get https://interact.leadforensics.com/WebApi_v2/Reference/GetConversionList
Returns a list of conversions that have been set up by the client on the Lead Forensics portal.
Responses
Returns a list of conversions that have been set up by the client on the Lead Forensics portal.
xxxxxxxxxx
20$.ajax({
type: 'GET',
dataType: 'json',
url: 'https://interact.leadforensics.com/WebApi_v2/Reference/GetConversionList?pagesize=5&pageno=1',
headers: {
'Authorization-Token': 'Zax4qjY5w3tmAlqJUajROgW',
'ClientID':'45656'
},
success: function (data) {
if (data.List.length > 0) {
//we have a conversion record
}
else {
//we do not have a conversion record
}
},
error: function (err) {
//ajax error trap
}
});