Ascio Web Service v3

PHP 5 Classes GetOrders

Search for orders.

GetOrdersResponse GetOrders(SecurityHeaderDetails $securityHeader,GetOrdersRequest $request)

Response codes

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

GetOrders Request

Property
request

GetOrdersResponse

PropertyDescription
GetOrdersResult
TotalCountExample: 1
OrdersInfo
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 getOrdersExample() {
	$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\GetOrdersRequest();
	$request->setTransactionComment("TransactionCommentTest");
	$request->setComments("RegistrarTag");
	$request->setFromDate(new \DateTime());
	$request->setToDate(new \DateTime());
	$request->setOrderStatusTypes([
		"NotSet", 
		"Received", 
		"Validated", 
		"Invalid", 
		"PendingDocumentation", 
		"PendingEndUserAction", 
		"DocumentationReceived", 
		"DocumentationApproved", 
		"DocumentationNotApproved", 
		"PendingNicProcessing", 
		"PendingNicDocumentApproval", 
		"PendingPostProcessing", 
		"PendingInternalProcessing", 
		"Completed", 
		"Failed", 
		"AuthenticationFailed"
	]);
	$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->setObjectTypes([
		"DomainType", 
		"DefensiveType", 
		"MarkType", 
		"NameWatchType", 
		"SslCertificateType", 
		"LocalPresence", 
		"PrivacyProxy", 
		"MarkExtendedService", 
		"SanSsl"
	]);
	$request->setOrderSort(ascio\SearchOrderSortType::CreatedAsc);
	$request->setPageInfo($pageInfo);
	$request->setObjectNames([
	]);
	$request->setObjectHandles([
	]);
	$request->setOrderIds([
	]);
	try {
		 $response = $ascioClient->GetOrders(new ascio\GetOrders($request));
        } catch (\Exception $e) {
    		echo ("[".$e->faultcode . "] ". $e->faultstring);
	    	return;
        
        }
	$result = $response->GetOrdersResult;
	echo "Code: ".$result->getResultCode()."\n";
	echo "Message: ".$result->getResultMessage()."\n";  
	return $result;
}
getOrdersExample();
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.