Ascio Web Service v2
PHP 5 CreateOrder - Nameserver_Update
Replaces the nameserver with a new handle. There are 2 ways to submit the new Nameserver: With the Nameserver Update, it is possible to change Tech Contact, DnsSec and Nameservers in one request. For .com, .net and some other TLDs glue records are needed. Please contact support for help.
Response CreateOrder(string $sessionId,Order $order)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | Order validated | |
200 | Order received | |
400 | Order not validated | Messages |
401 | Authorization failed | |
405 | Access denied |
CreateOrder Request
Property | Description |
---|---|
sessionId | Example: o58t9fjgw9bjarp6q7byv13e |
order |
CreateOrderResponse
Property |
---|
CreateOrderResult |
order |
Property | Value |
OrderType | Nameserver_Update |
---|
PHP 5 example
<?php
$wsdl = "https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl";
//$wsdl = "https://aws.ascio.com/2012/01/01/AscioService.wsdl";
$client = new SoapClient($wsdl,[ "trace" => 1, "soap_version" => SOAP_1_1)];
//Contact
$techContact = [
"Status" => "StatusTest",
"Handle" => "JD123",
"FirstName" => "John",
"LastName" => "Doe",
"OrgName" => "Ascio",
"Address1" => "Address1Test",
"Address2" => "Address2Test",
"PostalCode" => "888349",
"City" => "CityTest",
"State" => "StateTest",
"CountryCode" => "DK",
"Email" => $config->getEmail(),
"Phone" => "+45.123456789",
"Fax" => "+45.987654321",
"Type" => "owner",
"Details" => "DetailsTest",
"OrganisationNumber" => "OrganisationNumberTest"
];
//NameServer
$nameServer1 = [
"HostName" => "ns1.ascio.net",
"IpAddress" => "64.98.148.24",
"Status" => "StatusTest",
"IpV6Address" => "xxxx:xxxx:xxx:xxx:xxxx",
"Details" => "DetailsTest"
];
//NameServer
$nameServer2 = [
"HostName" => "ns2.ascio.net",
"IpAddress" => "216.40.47.100",
"Status" => "StatusTest",
"IpV6Address" => "xxxx:xxxx:xxx:xxx:xxxx",
"Details" => "DetailsTest"
];
//NameServer
$nameServer3 = [
"HostName" => "ns3.ascio.net",
"IpAddress" => "64.98.148.25",
"Status" => "StatusTest",
"IpV6Address" => "xxxx:xxxx:xxx:xxx:xxxx",
"Details" => "DetailsTest"
];
//NameServer
$nameServer4 = [
"HostName" => "ns4.ascio.net",
"IpAddress" => "216.40.47.101",
"Status" => "StatusTest",
"IpV6Address" => "xxxx:xxxx:xxx:xxx:xxxx",
"Details" => "DetailsTest"
];
//NameServer
$nameServer5 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer6 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer7 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer8 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer9 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer10 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer11 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServer
$nameServer12 = [
"HostName" => "HostNameTest",
"IpAddress" => "IpAddressTest",
"Status" => "StatusTest",
"IpV6Address" => "IpV6AddressTest",
"Details" => "DetailsTest"
];
//NameServers
$nameServers = [
"NameServer1" => $nameServer1,
"NameServer2" => $nameServer2,
"NameServer3" => $nameServer3,
"NameServer4" => $nameServer4,
"NameServer5" => $nameServer5,
"NameServer6" => $nameServer6,
"NameServer7" => $nameServer7,
"NameServer8" => $nameServer8,
"NameServer9" => $nameServer9,
"NameServer10" => $nameServer10,
"NameServer11" => $nameServer11,
"NameServer12" => $nameServer12
];
//DnsSecKey
$dnsSecKey1 = [
"Handle" => "JD123"
];
//DnsSecKey
$dnsSecKey2 = [
"Handle" => "JD123"
];
//DnsSecKey
$dnsSecKey3 = [
"Handle" => "JD123"
];
//DnsSecKey
$dnsSecKey4 = [
"Handle" => "JD123"
];
//DnsSecKey
$dnsSecKey5 = [
"Handle" => "JD123"
];
//DnsSecKeys
$dnsSecKeys = [
"DnsSecKey1" => $dnsSecKey1,
"DnsSecKey2" => $dnsSecKey2,
"DnsSecKey3" => $dnsSecKey3,
"DnsSecKey4" => $dnsSecKey4,
"DnsSecKey5" => $dnsSecKey5
];
//Domain
$domain = [
"DomainName" => $env->getProperties()->getProperty("DomainName"),
"TechContact" => $techContact,
"NameServers" => $nameServers,
"DnsSecKeys" => $dnsSecKeys
];
//Order
$order = [
"Type" => "Nameserver_Update",
"Domain" => $domain
];
//CreateOrder
$createOrder = [
"sessionId" => env.getSessionId(),
"order" => $order
];
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 v2
https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl (OTE)
https://aws.ascio.com/2012/01/01/AscioService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl (OTE)
https://aws.ascio.com/2012/01/01/AscioService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.