Ascio Web Service v3

PHP 5 Classes GetFuturePrices

Search for prices. It can be searched by:

  • TLDs
  • CountryCodes
  • Periods
  • Product Options
  • ObjectTypes (Domain, SslCertificate, Mark, Defensive, NameWatch)

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

ResultCodeMessageValue
200OK
401Authorization failed
404Object not found
405Access denied
501Syntax error in parameters or arguments

GetFuturePrices Request

Property
request

GetFuturePricesResponse

PropertyDescription
GetFuturePricesResult
TotalCountExample: 1
Currency
Prices
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

PHP 5 Classes example

<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
use ascio\lib as lib;
function getFuturePricesExample() {
	$config = new lib\Config();
	$env = $config->get("testing"); //testing or live
	$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
	$header = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
	$ascioClient	 = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
	$ascioClient->__setSoapHeaders($header);

	$pageInfo =  new ascio\PagingInfo();
	$pageInfo->setPageIndex(1);
	$pageInfo->setPageSize(1);

	$request =  new ascio\GetPricesRequest();
	$request->setDate(new \DateTime());
	$request->setObjectTypes([
		"DomainType", 
		"DefensiveType", 
		"MarkType", 
		"NameWatchType", 
		"SslCertificateType", 
		"LocalPresence", 
		"PrivacyProxy", 
		"MarkExtendedService", 
		"SanSsl"
	]);
	$request->setOrderTypes([
		"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->setTlds([
		"com", 
		"net", 
		"org", 
		"info", 
		"biz", 
		"guru"
	]);
	$request->setTldCountryCode("de");
	$request->setPeriods([1, 2, 3]);
	$request->setProductOptions([
	]);
	$request->setDefaultPeriodsOnly(true);
	$request->setPageInfo($pageInfo);
	$request->setTldsInPortfolioOnly("TldsInPortfolioOnlyTest");
	try {
		 $response = $ascioClient->GetFuturePrices(new ascio\GetFuturePrices($request));
        } catch (\Exception $e) {
    		echo ("[".$e->faultcode . "] ". $e->faultstring);
	    	return;
        
        }
	$result = $response->GetFuturePricesResult;
	echo "Code: ".$result->getResultCode()."\n";
	echo "Message: ".$result->getResultMessage()."\n";  
	return $result;
}
getFuturePricesExample();
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.