T2A


Click here for a complete list of operations.

person_verify_historic

Validate that a given person exists in our current AND historic UK person database.

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
api_key:
client:
surname:
forename:
fullname:
addr1:
addr2:
addr3:
place:
town:
postcode:
surname_fuzzy:
forename_fuzzy:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /soap/t2a.asmx HTTP/1.1
Host: api.t2a.io
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://api.t2a.io/soap/person_verify_historic"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <person_verify_historic xmlns="https://api.t2a.io/soap">
      <api_key>string</api_key>
      <client>string</client>
      <surname>string</surname>
      <forename>string</forename>
      <fullname>string</fullname>
      <addr1>string</addr1>
      <addr2>string</addr2>
      <addr3>string</addr3>
      <place>string</place>
      <town>string</town>
      <postcode>string</postcode>
      <surname_fuzzy>string</surname_fuzzy>
      <forename_fuzzy>string</forename_fuzzy>
    </person_verify_historic>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <person_verify_historicResponse xmlns="https://api.t2a.io/soap">
      <person_verify_historicResult />
    </person_verify_historicResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /soap/t2a.asmx HTTP/1.1
Host: api.t2a.io
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <person_verify_historic xmlns="https://api.t2a.io/soap">
      <api_key>string</api_key>
      <client>string</client>
      <surname>string</surname>
      <forename>string</forename>
      <fullname>string</fullname>
      <addr1>string</addr1>
      <addr2>string</addr2>
      <addr3>string</addr3>
      <place>string</place>
      <town>string</town>
      <postcode>string</postcode>
      <surname_fuzzy>string</surname_fuzzy>
      <forename_fuzzy>string</forename_fuzzy>
    </person_verify_historic>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <person_verify_historicResponse xmlns="https://api.t2a.io/soap">
      <person_verify_historicResult />
    </person_verify_historicResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /soap/t2a.asmx/person_verify_historic?api_key=string&client=string&surname=string&forename=string&fullname=string&addr1=string&addr2=string&addr3=string&place=string&town=string&postcode=string&surname_fuzzy=string&forename_fuzzy=string HTTP/1.1
Host: api.t2a.io
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<person_verify_historic_res xmlns="https://api.t2a.io/soap" />

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /soap/t2a.asmx/person_verify_historic HTTP/1.1
Host: api.t2a.io
Content-Type: application/x-www-form-urlencoded
Content-Length: length

api_key=string&client=string&surname=string&forename=string&fullname=string&addr1=string&addr2=string&addr3=string&place=string&town=string&postcode=string&surname_fuzzy=string&forename_fuzzy=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<person_verify_historic_res xmlns="https://api.t2a.io/soap" />