Ascio Web Service v2
Class SearchOrderRequest
Property | Description |
---|---|
OrderTypes | Example: OrderType.Register_Domain |
OrderStatusTypes | Example: OrderStatusType.Validated |
FromDate | |
ToDate | |
DomainName | Example: "ascio-test-domain" |
TransactionComment | |
Comments | Example: "RegistrarTag" |
IncludeDomainDetails | Example: true |
PageInfo | |
OrderSort |
use SOAP::Lite;
use Date::Format;
$proxy = "https://aws.demo.ascio.com/2012/01/01/AscioService.svc";
$namespace = "http://www.ascio.com/2007/01";
$soap = SOAP::Lite->on_action( sub { "" } )->proxy($proxy);
$soap->autotype(0);
$method = SOAP::Data->name("SearchOrderRequest")->attr({xmlns => $namespace});
#PagingInfo
$pageInfo = \SOAP::Data->value(
SOAP::Data->name('PageIndex',1),
SOAP::Data->name('PageSize',1)
);
#SearchOrderRequest
$searchOrderRequest = \SOAP::Data->value(
SOAP::Data->name('OrderTypes',SOAP::Data->value(
SOAP::Data->name("OrderType", "NotSet"),
SOAP::Data->name("OrderType", "Contact_Update"),
SOAP::Data->name("OrderType", "Change_Locks"),
SOAP::Data->name("OrderType", "Delete_Domain"),
SOAP::Data->name("OrderType", "Registrant_Details_Update"),
SOAP::Data->name("OrderType", "Expire_Domain"),
SOAP::Data->name("OrderType", "Nameserver_Update"),
SOAP::Data->name("OrderType", "Owner_Change"),
SOAP::Data->name("OrderType", "Queue_Domain"),
SOAP::Data->name("OrderType", "Register_Domain"),
SOAP::Data->name("OrderType", "Renew_Domain"),
SOAP::Data->name("OrderType", "Restore_Domain"),
SOAP::Data->name("OrderType", "Transfer_Domain"),
SOAP::Data->name("OrderType", "Unexpire_Domain"),
SOAP::Data->name("OrderType", "Transfer_Away"),
SOAP::Data->name("OrderType", "Autorenew_Domain"),
SOAP::Data->name("OrderType", "Autodelete_Domain"),
SOAP::Data->name("OrderType", "Defensive_Registration"),
SOAP::Data->name("OrderType", "Name_Watch"),
SOAP::Data->name("OrderType", "Domain_Details_Update"),
SOAP::Data->name("OrderType", "Import_Domain"),
SOAP::Data->name("OrderType", "Partner_Change"),
SOAP::Data->name("OrderType", "Support"),
SOAP::Data->name("OrderType", "DeQueue"),
SOAP::Data->name("OrderType", "Update_AuthInfo"))),
SOAP::Data->name('OrderStatusTypes',SOAP::Data->value(
SOAP::Data->name("OrderStatusType", "NotSet"),
SOAP::Data->name("OrderStatusType", "Received"),
SOAP::Data->name("OrderStatusType", "Validated"),
SOAP::Data->name("OrderStatusType", "Invalid"),
SOAP::Data->name("OrderStatusType", "Pending"),
SOAP::Data->name("OrderStatusType", "Processing"),
SOAP::Data->name("OrderStatusType", "Pending_Documentation"),
SOAP::Data->name("OrderStatusType", "Pending_End_User_Action"),
SOAP::Data->name("OrderStatusType", "Documentation_Received"),
SOAP::Data->name("OrderStatusType", "Documentation_Approved"),
SOAP::Data->name("OrderStatusType", "Documentation_Not_Approved"),
SOAP::Data->name("OrderStatusType", "Pending_NIC_Processing"),
SOAP::Data->name("OrderStatusType", "Pending_NIC_Document_Approval"),
SOAP::Data->name("OrderStatusType", "Pending_Post_Processing"),
SOAP::Data->name("OrderStatusType", "Pending_Internal_Processing"),
SOAP::Data->name("OrderStatusType", "Completed"),
SOAP::Data->name("OrderStatusType", "Failed"),
SOAP::Data->name("OrderStatusType", "Authentication_Failed"))),
SOAP::Data->name('FromDate',time2str('%Y-%m-%dT%H:%M:%SZ', time, 'EST')),
SOAP::Data->name('ToDate',time2str('%Y-%m-%dT%H:%M:%SZ', time, 'EST')),
SOAP::Data->name('DomainName','testdomain123.com'),
SOAP::Data->name('TransactionComment','TransactionCommentTest'),
SOAP::Data->name('Comments','RegistrarTag'),
SOAP::Data->name('IncludeDomainDetails','true'),
SOAP::Data->name('PageInfo',$pageInfo),
SOAP::Data->name('OrderSort','CreDateAsc')
);
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.
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.