Ascio Web Service v3

PHP 5 Classes CreateRegistrant

Creating Registrant object. The registrantHandle will be returned in the registrant object passed by reference.

CreateRegistrantResponse CreateRegistrant(SecurityHeaderDetails $securityHeader,CreateRegistrantRequest $request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
501Syntax error in parameters or arguments
506Required attribute missing in request

CreateRegistrant Request

Property
request

CreateRegistrantResponse

PropertyTypeDescription
CreateRegistrantResult
Registrant
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 createRegistrantExample() {
	$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);

	$registrant =  new ascio\Registrant();
	$registrant->setFirstName("John");
	$registrant->setLastName("Doe");
	$registrant->setOrgName("Ascio");
	$registrant->setAddress1("Address1Test");
	$registrant->setAddress2("Address2Test");
	$registrant->setCity("CityTest");
	$registrant->setState("StateTest");
	$registrant->setPostalCode("888349");
	$registrant->setCountryCode("DK");
	$registrant->setPhone("+45.123456789");
	$registrant->setFax("+45.987654321");
	$registrant->setEmail("administrator@ascio-test-domain.com");
	$registrant->setType("owner");
	$registrant->setDetails("DetailsTest");
	$registrant->setOrganisationNumber("OrganisationNumberTest");
	$registrant->setVatNumber("VatNumberTest");
	$registrant->setNexusCategory("NexusCategoryTest");

	$request =  new ascio\CreateRegistrantRequest();
	$request->setRegistrant($registrant);
	try {
		 $response = $ascioClient->CreateRegistrant(new ascio\CreateRegistrant($request));
        } catch (\Exception $e) {
    		echo ("[".$e->faultcode . "] ". $e->faultstring);
	    	return;
        
        }
	$result = $response->CreateRegistrantResult;
	echo "Code: ".$result->getResultCode()."\n";
	echo "Message: ".$result->getResultMessage()."\n";  
	return $result;
}
createRegistrantExample();
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.