InformationPort


Click here for a complete list of operations.

AddressVerification

Searches the address database to facilitate address verification requirements for address based orders.

Test

The test form is only available for requests from the local machine.

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 /WebServices/OOTInternal/InformationService.asmx HTTP/1.1
Host: www.wirelineonboarding.co.nz
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "urn:DCNZ.MSP.Wireline.WebServices.Wholesale.Information:AddressVerificationSoapIn"

<?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>
    <addressVerificationRequest xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Messages">
      <addressVerification>
        <samId xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</samId>
        <number xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</number>
        <subDescription xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</subDescription>
        <street xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</street>
        <streetType xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</streetType>
        <direction xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</direction>
        <suburb xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</suburb>
        <city xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</city>
        <buildingFloor xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</buildingFloor>
        <buildingSuite xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</buildingSuite>
        <buildingName xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</buildingName>
        <postalCode xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">string</postalCode>
      </addressVerification>
    </addressVerificationRequest>
  </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>
    <addressVerificationResponse xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Messages">
      <addressVerifications count="integer">
        <addressVerification xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">
          <samId>string</samId>
          <number>string</number>
          <subDescription>string</subDescription>
          <street>string</street>
          <streetType>string</streetType>
          <direction>string</direction>
          <suburb>string</suburb>
          <city>string</city>
          <buildingFloor>string</buildingFloor>
          <buildingSuite>string</buildingSuite>
          <buildingName>string</buildingName>
          <postalCode>string</postalCode>
        </addressVerification>
        <addressVerification xmlns="urn:DCNZ.MSP.Wireline.Wholesale.Common">
          <samId>string</samId>
          <number>string</number>
          <subDescription>string</subDescription>
          <street>string</street>
          <streetType>string</streetType>
          <direction>string</direction>
          <suburb>string</suburb>
          <city>string</city>
          <buildingFloor>string</buildingFloor>
          <buildingSuite>string</buildingSuite>
          <buildingName>string</buildingName>
          <postalCode>string</postalCode>
        </addressVerification>
      </addressVerifications>
    </addressVerificationResponse>
  </soap:Body>
</soap:Envelope>