This is the API you should use in order to retrieve information from your customer.
All variables described in the input variables section are mandatory.
To invoke the Bankintel.Netiden API through your website, you need to call the Net-Iden API located at http://soap.netiden.com, or at https://soap.netiden.com in the case you need to use an SSL connection. The name of the API is IPintel.Netiden:
http://soap.netiden.com/IPintel.netiden?AID=34h438934hj23k23&UID=344jk
234jgoi23vg3&IP=192.168.1.98&BIN=362458
ASP 3.0 implementation example:
<%
dim oHttp
dim xmldom
dim txtRequestString
dim result
set oHttp = CreateObject("MSXML2.XMLHTTP")
set xmldom = CreateObject("msxml2.domdocument")
'THIS EXAMPLE SETS THE VARIABLES TO BE USED IN THE REQUEST STRING
Input_AID="34h438934hj23k23"
Input_UID="344jk234jgoi23vg3"
Input_IP=request.servervariables("REMOTE_ADDR")
Input_BIN="362458"
'DEFINES THE REQUEST STRING VARIABLE
txtRequestString = "http://soap.netiden.com/IPintel.netiden?"
txtRequestString = txtRequestString & "AID=" & Input_AID & "&"
txtRequestString = txtRequestString & "UID=" & Input_UID & "&"
txtRequestString = txtRequestString & "IP=" & Input_IP
txtRequestString = txtRequestString & "BIN=" & Input_BIN
'CALLS THE NETIDEN API
oHttp.open "GET",txtRequestString , false
oHttp.send
xmldom.async =false
xmldom.loadXML (oHttp.responseText)
%>
|