Ascio Web Service v3
Perl CreateOrder - Expire
Expires the domain. The domain will be deleted at the expire-date + threshold (JSON thresholds of all TLDs.). To simulate auto-expire please expire the domain after register/transfer. With this the domain won't auto-renew.
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 | Expire |
---|---|
request | DomainOrderRequest |
Perl example
use SOAP::Lite;
use Date::Format;
$proxy = "https://aws.demo.ascio.com/v3/AscioService.svc";
$namespace = "http://www.ascio.com/2007/01";
$soap = SOAP::Lite
->on_action( sub { "CreateOrder" } )
->proxy($proxy)
->ns("http://www.ascio.com/2013/02", "v3")
->ns("http://www.ascio.com/2013/02/AscioService", "service");
# Please enter your ascio-credentials here
my $header = SOAP::Header->new(
name =>"v3:SecurityHeaderDetails",
value => {"v3:Account" => "username", "v3:Password" =>"password"}
);
$soap->autotype(0);
$method = SOAP::Data->name("service:CreateOrder")->attr({xmlns => $namespace});
#Domain
$domain = \SOAP::Data->value(
SOAP::Data->name('v3:Name','ascio-is-great.com')
);
#DomainOrderRequest
$request = \SOAP::Data->value(
SOAP::Data->name('v3:Type','Expire'),
SOAP::Data->name('v3:TransactionComment','TransactionCommentTest'),
SOAP::Data->name('v3:Domain',$domain)
);
@query = (
SOAP::Data->name("service:request" => $request)->attr({"xsi:type" => "v3:DomainOrderRequest"})
);
$result = $soap->call($method => @query, $header);
unless ($result->fault) {
$response = $result->valueof("//CreateOrderResponse/CreateOrderResult");
print "ResultCode : $response->{'ResultCode'}\r\n";
print "Message : $response->{'ResultMessage'}\r\n";
print "Values: ", join(", ", $result->valueof("//CreateOrderResponse/CreateOrderResult/Errors/[>0]")), "\n";
if ($response->{"ResultCode"} == 200) {
$order = $result->valueof("//CreateOrderResponse/order");
print "OrderId : $order->{'OrderId'}\r\n";
}
}
else {
print join ", ",
$result->faultcode,
$result->faultstring,
$result->faultdetail;
}
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.