Ascio Web Service v2

NodeJS CreateOrder - Nameserver_Update

Replaces the nameserver 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 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

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

CreateOrder Request

PropertyDescription
sessionIdExample: o58t9fjgw9bjarp6q7byv13e
order

CreateOrderResponse

Property
CreateOrderResult
order
PropertyValue
OrderTypeNameserver_Update

NodeJS example

var soap = require("soap");

var nameserver_UpdateExample = function(callback) {

	//Contact
	techContact =  {};
	techContact.Status="StatusTest";
	techContact.Handle="JD123";
	techContact.FirstName="John";
	techContact.LastName="Doe";
	techContact.OrgName="Ascio";
	techContact.Address1="Address1Test";
	techContact.Address2="Address2Test";
	techContact.PostalCode="888349";
	techContact.City="CityTest";
	techContact.State="StateTest";
	techContact.CountryCode="DK";
	techContact.Email="test@gmail.com";
	techContact.Phone="+45.123456789";
	techContact.Fax="+45.987654321";
	techContact.Type="owner";
	techContact.Details="DetailsTest";
	techContact.OrganisationNumber="OrganisationNumberTest";

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

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

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

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

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

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

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

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

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

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

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

	//NameServer
	nameServer12 =  {};
	nameServer12.HostName="HostNameTest";
	nameServer12.IpAddress="IpAddressTest";
	nameServer12.Status="StatusTest";
	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.DomainName="testdomain.com";
	domain.TechContact=techContact;
	domain.NameServers=nameServers;
	domain.DnsSecKeys=dnsSecKeys;

	//Order
	order =  {};
	order.Type="Nameserver_Update";
	order.Domain=domain;	
	soap.createClient("../AscioServiceTest.wsdl", function(err, client) {
		if(err) {
			callback(err);
		} 
		else {
			client.CreateOrder({sessionId: "sessionId", order: order}, 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});
					}	
				}
			});

		};
	});
};
nameserver_UpdateExample(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 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.