Ascio Web Service v3

PHP 5 CreateOrder - RegistrantDetailsUpdate

Replaces the registrant with a new handle. There are 2 ways to submit the new Registrant:

  • Submit a Handle-ID. The handle linked to the domain will be replaced
  • Submit new data. A new handle will be created. The handle linked to the domain will be replaced

An OwnerChange is needed when materialized data is changed:

  • Name
  • Company
  • Company Numer
  • E-Mail Address (IRTP)

CreateOrderResponse CreateOrder(SecurityHeaderDetails $securityHeader,CreateOrderRequest $request)

Response codes

ResultCodeMessageValue
200Order validated
200Order received
400Order not validatedMessages
401Authorization failed
405Access denied

CreateOrder Request

PropertyType
request

CreateOrderResponse

PropertyDescription
CreateOrderResult
OrderInfo
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

PropertyValue
OrderTypeRegistrantDetailsUpdate
requestDomainOrderRequest

PHP 5 example

<?php
$wsdl = "https://aws.demo.ascio.com/v3/aws.wsdl";
//$wsdl = "https://aws.ascio.com/v3/aws.wsdl";
$client = new SoapClient($wsdl,array( "trace" => 1, "soap_version" => SOAP_1_1));
$credentials = array("Account"=> "myaccount", "Password" => "mypassword");
$header = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
$client->__setSoapHeaders($header);
//KeyValue

$keyValue =  [
	"Key" => "Title",
	"Value" => "Mr."
];
//Extensions

$ownerExtensions =  [
	"KeyValue" => [$keyValue]
];
//Registrant

$owner =  [
	"FirstName" => "John",
	"LastName" => "Doe",
	"OrgName" => "Ascio",
	"Address1" => "Address1Test",
	"Address2" => "Address2Test",
	"City" => "CityTest",
	"State" => "StateTest",
	"PostalCode" => "888349",
	"CountryCode" => "DK",
	"Phone" => "+45.123456789",
	"Fax" => "+45.987654321",
	"Email" => $config->getEmail(),
	"Type" => "owner",
	"Details" => "DetailsTest",
	"OrganisationNumber" => "OrganisationNumberTest",
	"Extensions" => $ownerExtensions,
	"VatNumber" => "VatNumberTest",
	"NexusCategory" => "NexusCategoryTest"
];
//Domain

$domain =  [
	"Name" => "ascio-is-great.com",
	"Owner" => $owner
];
//DomainOrderRequest

$request =  [
	"Type" => "RegistrantDetailsUpdate",
	"TransactionComment" => "TransactionCommentTest",
	"Domain" => $domain
];
//CreateOrder

$createOrder =  [
	"request" => new SoapVar($request, SOAP_ENC_OBJECT, "DomainOrderRequest", "http://www.ascio.com/2013/02","request","http://www.ascio.com/2013/02/AscioService")
];
try{	
    $result = $client->createOrder($createOrder);
    echo "ResultCode : ".$result->CreateOrderResult->ResultCode."\r\n";
    echo "ResultMessage : ".$result->CreateOrderResult->ResultMessage."\r\n";
    if(is_array($result->CreateOrderResult->Errors->string)) {
        echo "Errors:\r\n";
        foreach($result->CreateOrderResult->Errors->string as $key => $value) {
            echo " - " . $value."\r\n";
        }
    }
} catch(Exception $e) {
	echo $e->getMessage(); 
}

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.