Ascio Web Service v2
C# 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 | 
|---|
C# example
AscioServices services = new ServiceReference1.AscioServices();
Registrant registrant =  new 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 = email@email.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 =  new Contact();
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 = email@email.com
adminContact.Phone = "+45.123456789";
adminContact.Fax = "+45.987654321";
adminContact.Type = "owner";
adminContact.Details = "DetailsTest";
adminContact.OrganisationNumber = "OrganisationNumberTest";
Domain domain =  new Domain();
domain.DomainName = domaintest.com
domain.Registrant = registrant;
domain.AdminContact = adminContact;
Order order =  new Order();
order.Type = OrderType.Owner_Change;
order.Domain = domain;
Response response = services.CreateOrder("mySessionId", ref request);
if (response.ResultCode == 200) {
	Console.WriteLine("My new orderId is : " + request.OrderId);
} else {
	if (response.Values != null) {
		Console.WriteLine(String.Join(",", response.Values));
	}
}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.