Ascio Web Service v3

NodeJS CreateOrder - NameserverUpdate (Nameserver Update)

Replaces the DnsSec with a new handle. There are 2 ways to submit the new Nameserver:

  • 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

With the Nameserver Update, it is possible to change DnsSec.

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
OrderTypeNameserverUpdate
requestDomainOrderRequest
Examplednssec

NodeJS example

var soap = require("soap");

var nameserverUpdateExample = function(callback) {

	//NameServer
	nameServer1 =  {};
	nameServer1.Handle="JD123";
	nameServer1.HostName="ns1.ascio.net";
	nameServer1.IpAddress="64.98.148.24";
	nameServer1.IpV6Address="xxxx:xxxx:xxx:xxx:xxxx";
	nameServer1.Details="DetailsTest";

	//NameServer
	nameServer2 =  {};
	nameServer2.Handle="JD123";
	nameServer2.HostName="ns2.ascio.net";
	nameServer2.IpAddress="216.40.47.100";
	nameServer2.IpV6Address="xxxx:xxxx:xxx:xxx:xxxx";
	nameServer2.Details="DetailsTest";

	//NameServer
	nameServer3 =  {};
	nameServer3.Handle="JD123";
	nameServer3.HostName="ns3.ascio.net";
	nameServer3.IpAddress="64.98.148.25";
	nameServer3.IpV6Address="xxxx:xxxx:xxx:xxx:xxxx";
	nameServer3.Details="DetailsTest";

	//NameServer
	nameServer4 =  {};
	nameServer4.Handle="JD123";
	nameServer4.HostName="ns4.ascio.net";
	nameServer4.IpAddress="216.40.47.101";
	nameServer4.IpV6Address="xxxx:xxxx:xxx:xxx:xxxx";
	nameServer4.Details="DetailsTest";

	//NameServer
	nameServer5 =  {};
	nameServer5.Handle="JD123";
	nameServer5.HostName="HostNameTest";
	nameServer5.IpAddress="IpAddressTest";
	nameServer5.IpV6Address="IpV6AddressTest";
	nameServer5.Details="DetailsTest";

	//NameServer
	nameServer6 =  {};
	nameServer6.Handle="JD123";
	nameServer6.HostName="HostNameTest";
	nameServer6.IpAddress="IpAddressTest";
	nameServer6.IpV6Address="IpV6AddressTest";
	nameServer6.Details="DetailsTest";

	//NameServer
	nameServer7 =  {};
	nameServer7.Handle="JD123";
	nameServer7.HostName="HostNameTest";
	nameServer7.IpAddress="IpAddressTest";
	nameServer7.IpV6Address="IpV6AddressTest";
	nameServer7.Details="DetailsTest";

	//NameServer
	nameServer8 =  {};
	nameServer8.Handle="JD123";
	nameServer8.HostName="HostNameTest";
	nameServer8.IpAddress="IpAddressTest";
	nameServer8.IpV6Address="IpV6AddressTest";
	nameServer8.Details="DetailsTest";

	//NameServer
	nameServer9 =  {};
	nameServer9.Handle="JD123";
	nameServer9.HostName="HostNameTest";
	nameServer9.IpAddress="IpAddressTest";
	nameServer9.IpV6Address="IpV6AddressTest";
	nameServer9.Details="DetailsTest";

	//NameServer
	nameServer10 =  {};
	nameServer10.Handle="JD123";
	nameServer10.HostName="HostNameTest";
	nameServer10.IpAddress="IpAddressTest";
	nameServer10.IpV6Address="IpV6AddressTest";
	nameServer10.Details="DetailsTest";

	//NameServer
	nameServer11 =  {};
	nameServer11.Handle="JD123";
	nameServer11.HostName="HostNameTest";
	nameServer11.IpAddress="IpAddressTest";
	nameServer11.IpV6Address="IpV6AddressTest";
	nameServer11.Details="DetailsTest";

	//NameServer
	nameServer12 =  {};
	nameServer12.Handle="JD123";
	nameServer12.HostName="HostNameTest";
	nameServer12.IpAddress="IpAddressTest";
	nameServer12.IpV6Address="IpV6AddressTest";
	nameServer12.Details="DetailsTest";

	//NameServers
	nameServers =  {};
	nameServers.NameServer1=nameServer1;
	nameServers.NameServer2=nameServer2;
	nameServers.NameServer3=nameServer3;
	nameServers.NameServer4=nameServer4;
	nameServers.NameServer5=nameServer5;
	nameServers.NameServer6=nameServer6;
	nameServers.NameServer7=nameServer7;
	nameServers.NameServer8=nameServer8;
	nameServers.NameServer9=nameServer9;
	nameServers.NameServer10=nameServer10;
	nameServers.NameServer11=nameServer11;
	nameServers.NameServer12=nameServer12;

	//DnsSecKey
	dnsSecKey1 =  {};
	dnsSecKey1.Handle="JD123";

	//DnsSecKey
	dnsSecKey2 =  {};
	dnsSecKey2.Handle="JD123";

	//DnsSecKey
	dnsSecKey3 =  {};
	dnsSecKey3.Handle="JD123";

	//DnsSecKey
	dnsSecKey4 =  {};
	dnsSecKey4.Handle="JD123";

	//DnsSecKey
	dnsSecKey5 =  {};
	dnsSecKey5.Handle="JD123";

	//DnsSecKeys
	dnsSecKeys =  {};
	dnsSecKeys.DnsSecKey1=dnsSecKey1;
	dnsSecKeys.DnsSecKey2=dnsSecKey2;
	dnsSecKeys.DnsSecKey3=dnsSecKey3;
	dnsSecKeys.DnsSecKey4=dnsSecKey4;
	dnsSecKeys.DnsSecKey5=dnsSecKey5;

	//Domain
	domain =  {};
	domain.NameServers=nameServers;
	domain.DnsSecKeys=dnsSecKeys;
	domain.MasterNameServerIp="MasterNameServerIpTest";

	//DomainOrderRequest
	request =  
                    {
                        attributes: {
                            xsi_type: {
                                type: "http://www.ascio.com/2013/02",
                                xmlns: "DomainOrderRequest"
                            }
                        }
                    };
	request.Type="NameserverUpdate";
	request.TransactionComment="TransactionCommentTest";
	request.Domain=domain;	
	soap.createClient("https://aws.demo.ascio.com/v3/aws.wsdl", function(err, client) {
		if(err) {
			callback(err);
		} 
		else {
			const header = {
				SecurityHeaderDetails : {
					Account: "ascio-account",
					Password: "mypassword123"
				}			
			};
			const ns="http://www.ascio.com/2013/02";
			client.addSoapHeader(header, ns, "q1");
			client.CreateOrder({request: request}, function(err,result) {
				if(err) {
					callback({error: err , request : result.request.body});
				} else {
					if(result.CreateOrderResult.ResultCode < 400) {
						callback(null,result);	
					} else {
						callback({error: result.CreateOrderResult,request : request});
					}	
				}
			});

		};
	});
};
nameserverUpdateExample(function(err,result) {
	if(err) {
		console.log("\n\n Request \n\n",err.request, "\n\n Response \n\n" ,err.error,"\n");
	}
	else {
		console.log(result);
	}
});
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.