AddressesByStreetKey
 

AddressesByStreetKey

Definition

PartialAddress[] AddressesByStreetKey ( string username, string password, AddressCaptureLicence licence, string streetKey, string building, Option[] options )

Description:

Finds details of an address within a street. The street to search within is identified by the streetKey parameter, which should be a street key returned from the StreetsByLocalityKey or StreetsByName methods.

The building to find the address for is specified by the building parameter. This should be set to the name or number of the building you wish to find, or an organisation name.

View all Postcode Lookup Methods

Code Samples

Language:

<!-- Import the Integr8 Ajax API -->
<!-- NOTE: Get your own API key to use in the following script tag from: -->
<!-- http://www.data-8.co.uk/integr8/Admin/Ajax.aspx -->
<script src="http://webservices.data-8.co.uk/Javascript/Loader.ashx?key=your-api-key" type="text/javascript">
</script>

<script type="text/javascript">

function loadIntegr8() {
  // Load the AddressCapture Integr8 service
  data8.load('AddressCapture');
}

function AddressesByStreetKey(licence, streetKey, building) {
  /// <param name="licence">string. One of the following values: WebServerFull, WebClickFull, WebClickThoroughfare, InternalUserFull, InternalUserThoroughfare, SmallUserFull, SmallUserThoroughfare, Lookup, InternalServerFull, InternalServerThoroughfare, FreeTrial, FreeTrialThoroughfare</param>
  /// <param name="streetKey">string</param>
  /// <param name="building">string</param>
  var addresscapture = new data8.addresscapture();
  
  addresscapture.addressesbystreetkey(
    licence,
    streetKey,
    building,
    null,
    showAddressesByStreetKeyResult
  );
}

function showAddressesByStreetKeyResult(result) {
  // Check that the call succeeded, and show the error message if there was a problem.
  if (!result.Status.Success) {
    alert('Error: ' + result.Status.ErrorMessage);
  }
  else {
    // TODO: Process method results here.
    // Results can be extracted from the following fields:
    // result.Results
    //   Contains an array of addresses or partial address details that match the query.
    //   A human-readable description of each item in the array is available in the Description field,
    //   and an identifier to be passed to other methods is available in the ID field.
  }
}

loadIntegr8();

</script>
Skip Navigation Links
Request handled by server S1 for client 38.107.179.216 at 23/05/2012 00:25:08