Ascio Web Service v2

NodeJS CreateOrder - Registrant_Details_Update

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)

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
OrderTypeRegistrant_Details_Update

NodeJS example

var soap = require("soap");

var registrant_Details_UpdateExample = function(callback) {

	//Registrant
	registrant =  {};
	registrant.Name="ascio-is-great.com";
	registrant.OrgName="Ascio";
	registrant.Address1="Address1Test";
	registrant.Address2="Address2Test";
	registrant.City="CityTest";
	registrant.State="StateTest";
	registrant.PostalCode="888349";
	registrant.CountryCode="DK";
	registrant.Email="test@gmail.com";
	registrant.Phone="+45.123456789";
	registrant.Fax="+45.987654321";
	registrant.RegistrantType="C1";
	registrant.VatNumber="VatNumberTest";
	registrant.NexusCategory="NexusCategoryTest";
	registrant.RegistrantNumber="abc123445";
	registrant.Details="DetailsTest";

	//Domain
	domain =  {};
	domain.DomainName="testdomain.com";
	domain.Registrant=registrant;

	//Order
	order =  {};
	order.Type="Registrant_Details_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});
					}	
				}
			});

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