Ascio Web Service v3
PHP 5 Classes GetRegistrantVerificationInfo

GetRegistrantVerificationInfoResponse GetRegistrantVerificationInfo(SecurityHeaderDetails $securityHeader,GetRegistrantVerificationInfoRequest $request)Response codes
| ResultCode | Message | Value | 
|---|---|---|
| 200 | OK | |
| 401 | Authorization failed | |
| 404 | Object not found | 
GetRegistrantVerificationInfo Request
| Property | 
|---|
| request | 
PHP 5 Classes example
<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
use ascio\lib as lib;
function getRegistrantVerificationInfoExample() {
	$config = new lib\Config();
	$env = $config->get("testing"); //testing or live
	$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
	$headers = [];
	$headers[] = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
	$headers[] = new \SoapHeader("http://www.ascio.com/2013/02","ImpersonationHeaderDetails", ["TransactionAccount" => "mysubaccount"], false);	
	$ascioClient = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
	$ascioClient->__setSoapHeaders($headers);
	$request =  new ascio\GetRegistrantVerificationRequest();
	$request->setEmail("administrator@ascio-test-domain.com");
	try {
		 $response = $ascioClient->GetRegistrantVerificationInfo(new ascio\GetRegistrantVerificationInfo($request));
        } catch (\Exception $e) {
    		echo ("[".$e->faultcode . "] ". $e->faultstring);
	    	return;
        
        }
	$result = $response->GetRegistrantVerificationInfoResult;
	echo "Code: ".$result->getResultCode()."\n";
	echo "Message: ".$result->getResultMessage()."\n";  
	return $result;
}
getRegistrantVerificationInfoExample();WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.