Ascio Web Service v3
C# GetFuturePrices
Please limit the results with Paginate or other filter options. The list of Prices will contain detailed history of all prices.
GetFuturePricesResponse GetFuturePrices(SecurityHeaderDetails securityHeader,GetFuturePricesRequest request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
501 | Syntax error in parameters or arguments |
GetFuturePrices Request
Property |
---|
request |
GetFuturePricesResponse
Property | Description |
---|---|
GetFuturePricesResult | |
TotalCount | Example: 1 |
Currency | |
Prices | |
ResultCode | Example: 1 |
ResultMessage | |
Errors |
Used in Classes
C# example
AscioServices services = new ServiceReference1.AscioServiceClient();
SecurityHeaderDetails securityHeader = new SecurityHeaderDetails();
securityHeader.Account = "username";
securityHeader.Password = "password";
PagingInfo pageInfo = new PagingInfo();
pageInfo.PageIndex = 1;
pageInfo.PageIndexSpecified = true;
pageInfo.PageSize = 1;
pageInfo.PageSizeSpecified = true;
GetPricesRequest request = new GetPricesRequest();
request.Date = new \DateTime();
request.DateSpecified = true;
request.ObjectTypes = array(
"DomainType",
"DefensiveType",
"MarkType",
"NameWatchType",
"SslCertificateType",
"LocalPresence",
"PrivacyProxy",
"MarkExtendedService",
"SanSsl"
);
request.OrderTypes = array(
"NotSet",
"ContactUpdate",
"ChangeLocks",
"Delete",
"RegistrantDetailsUpdate",
"Expire",
"NameserverUpdate",
"OwnerChange",
"Queue",
"Register",
"Renew",
"Restore",
"Transfer",
"Unexpire",
"TransferAway",
"AutoRenew",
"AutoDelete",
"DetailsUpdate",
"Import",
"PartnerChange",
"DeQueue",
"UpdateAuthInfo",
"Support",
"WhoisDataReminder"
);
request.Tlds = array(
"com",
"net",
"org",
"info",
"biz",
"guru"
);
request.TldCountryCode = "de";
request.Periods = array(1, 2, 3);
request.ProductOptions = array(
);
request.DefaultPeriodsOnly = true;
request.PageInfo = pageInfo;
request.TldsInPortfolioOnly = "TldsInPortfolioOnlyTest";;
GetFuturePricesResponse response = services.GetFuturePrices(securityHeader, request);
if (response.ResultCode == 200) {
Console.WriteLine("OK");
} else {
Console.WriteLine("Error: "+response.ResultMessage+" ("+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.