get https://interact.leadforensics.com/WebApi_v2/Business/GetBusiness
Returns the businesses details for the provided identifier.
Responses
Returns the businesses details for the provided identifier.
xxxxxxxxxx
20$.ajax({
type: 'GET',
dataType: 'json',
url: 'https://interact.leadforensics.com/WebApi_v2/Business/GetBusiness?businessid=1101281',
headers: {
'Authorization-Token': 'Zax4qjY5w3tmAlqJUajROgW',
'ClientID':'45656'
},
success: function (data) {
if (data != undefined) {
//we have a business record
}
else {
//we do not have a business record
}
},
error: function (err) {
//ajax error trap
}
});