Ascio Web Service v2
NodeJS CreateOrder - Owner_Change
Replaces the registrant with a new handle. There are 2 ways to submit the new Registrant: With the OwnerChange, it is possible to change Registrant and Admistrative Contact in one request. The rules for the owner-change depend on the registry. Please look at the TLD-Kit for details. An OwnerChange is needed when materialized data is changed If no materialized data is changed, a Registrant Details Update can be used instead. This is easier than an Owner change.
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 | Owner_Change |
---|
NodeJS example
var soap = require("soap");
var owner_ChangeExample = 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";
//Contact
adminContact = {};
adminContact.Status="StatusTest";
adminContact.Handle="JD123";
adminContact.FirstName="John";
adminContact.LastName="Doe";
adminContact.OrgName="Ascio";
adminContact.Address1="Address1Test";
adminContact.Address2="Address2Test";
adminContact.PostalCode="888349";
adminContact.City="CityTest";
adminContact.State="StateTest";
adminContact.CountryCode="DK";
adminContact.Email="test@gmail.com";
adminContact.Phone="+45.123456789";
adminContact.Fax="+45.987654321";
adminContact.Type="owner";
adminContact.Details="DetailsTest";
adminContact.OrganisationNumber="OrganisationNumberTest";
//Domain
domain = {};
domain.DomainName="testdomain.com";
domain.Registrant=registrant;
domain.AdminContact=adminContact;
//Order
order = {};
order.Type="Owner_Change";
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});
}
}
});
};
});
};
owner_ChangeExample(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);
}
});
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.