About Net-Iden Products FAQ Rates Industries Developers         Sign In
  Developers Area  I   Integration Guide
  Release: 0.905   I   Last Update: May, 2009
  PHONE VERIFICATION  
 
Overview
 
 
End user experience
 
 
Types of calls
 
 
API Input variables
 
 
Requesting a phone call
 
 
API Output variables
 
 
Checking the status of a phone call
 
 
Output variables for RequestStatus API
 
 
Integrating with IP Intelligence
 
 
Understanding the <STATUS> field
 
 
Calling country codes
 
 
Placing a country code selection in your website
 
 
Script Builder
 
 
Generating a random PIN
 
 
Getting your visitor's IP address
 
  IP & BANKING INTELLIGENCE  
 
Overview
 
 
API - Input variables
 
 
Calling IPintel.Netiden API
 
 
API - Output variables
 

 

 
  Net-Iden Documentation
 

CALLING IPintel.Netiden API


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)

%>

 
 
            Development Partner Program    I    Terms of Use    I    Privacy Policy    I    Contact Us
 
  Copyright © 2009 Net-Iden. All Rights Reserved.