Ascio Web Service v3
C# CreateOrder - UpdateAuthInfo
Updates the AuthCode (AuthInfo/EPP-Code) of domain. Please look at the TLD-Kit for special rules.

CreateOrderResponse CreateOrder(SecurityHeaderDetails securityHeader,CreateOrderRequest request)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 | Type |
|---|---|
| request |
CreateOrderResponse
| Property | Description |
|---|---|
| CreateOrderResult | |
| OrderInfo | |
| ResultCode | Example: 1 |
| ResultMessage | |
| Errors |
Used in Classes
| Property | Value |
| OrderType | UpdateAuthInfo |
|---|---|
| request | DomainOrderRequest |
C# example
AscioServices services = new ServiceReference1.AscioServiceClient();
SecurityHeaderDetails securityHeader = new SecurityHeaderDetails();
securityHeader.Account = "username";
securityHeader.Password = "password";
Domain domain = new Domain();
domain.Name = "ascio-is-great.com";
domain.AuthInfo = "X4FF!zu";
DomainOrderRequest request = new DomainOrderRequest();
request.Type = OrderType.UpdateAuthInfo;
request.TypeSpecified = true;
request.TransactionComment = "TransactionCommentTest";
request.TransactionCommentSpecified = true;
request.Domain = domain;
CreateOrderResponse response = services.CreateOrder(securityHeader, request);
if (response.ResultCode == 200) {
Console.WriteLine("My new orderId is : " + request.OrderInfo.OrderId);
} else {
if (response.Errors != null) {
Console.WriteLine(String.Join(",", response.Errors));
}
Console.WriteLine(response.ResultMessage)
}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.
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.