Ascio Web Service v3

PHP 5 Classes GetRegistrants

Search for registrants.

GetRegistrantsResponse GetRegistrants(SecurityHeaderDetails $securityHeader,GetRegistrantsRequest $request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
404Object not found
405Access denied
406Invalid ObjectClassName
501Syntax error in parameters or arguments

GetRegistrants Request

Property
request

GetRegistrantsResponse

PropertyDescription
GetRegistrantsResult
TotalCountExample: 1
RegistrantInfos
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

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 getRegistrantsExample() {
	$config = new lib\Config();
	$env = $config->get("testing"); //testing or live
	$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
	$header = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
	$ascioClient	 = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
	$ascioClient->__setSoapHeaders($header);

	$pageInfo =  new ascio\PagingInfo();
	$pageInfo->setPageIndex(1);
	$pageInfo->setPageSize(1);

	$request =  new ascio\GetRegistrantsRequest();
	$request->setHandle("JD123");
	$request->setName("ascio-is-great.com");
	$request->setOrgName("Ascio");
	$request->setOrganisationNumber("OrganisationNumberTest");
	$request->setAddress1("Address1Test");
	$request->setAddress2("Address2Test");
	$request->setCity("CityTest");
	$request->setState("StateTest");
	$request->setPostalCode("888349");
	$request->setCountryCode("DK");
	$request->setPhone("+45.123456789");
	$request->setFax("+45.987654321");
	$request->setEmail("administrator@ascio-test-domain.com");
	$request->setStatus("StatusTest");
	$request->setCreationFromDate(new \DateTime());
	$request->setCreationToDate(new \DateTime());
	$request->setOrderSort(ascio\RegistrantSortType::CreatedAsc);
	$request->setPageInfo($pageInfo);
	try {
		 $response = $ascioClient->GetRegistrants(new ascio\GetRegistrants($request));
        } catch (\Exception $e) {
    		echo ("[".$e->faultcode . "] ". $e->faultstring);
	    	return;
        
        }
	$result = $response->GetRegistrantsResult;
	echo "Code: ".$result->getResultCode()."\n";
	echo "Message: ".$result->getResultMessage()."\n";  
	return $result;
}
getRegistrantsExample();
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.