Ascio Web Service v3

PHP 5 CreateOrder - Renew

Renews a domain. The RegPeriod defines for how many years the domain is renewed. Default is a RegPeriod of 1. Please be aware that some TLD's don't support RegPeriod 1, but 2. Some TLD's like .it don't support renew at all. In this case the domain needs to be unexpired. Then the AutoRenew will renew the domain.

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
OrderTypeRenew
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);
//Domain

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

$request =  [
	"Type" => "Renew",
	"TransactionComment" => "TransactionCommentTest",
	"Domain" => $domain,
	"AgreedPrice" => 5000
];
//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.