Ascio Web Service v3
Class GetOrdersRequest
Property | Description |
---|---|
TransactionComment | |
Comments | Example: "RegistrarTag" |
FromDate | |
ToDate | |
OrderStatusTypes | Example: OrderStatusType.Validated |
OrderTypes | Example: OrderType.Register |
ObjectTypes | Example: ObjectType.DomainType |
OrderSort | |
PageInfo | |
ObjectNames | |
ObjectHandles | |
OrderIds |
<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
$pageInfo = new ascio\PagingInfo();
$pageInfo->setPageIndex(1);
$pageInfo->setPageSize(1);
$getOrdersRequest = new ascio\GetOrdersRequest();
$getOrdersRequest->setTransactionComment("TransactionCommentTest");
$getOrdersRequest->setComments("RegistrarTag");
$getOrdersRequest->setFromDate(new \DateTime());
$getOrdersRequest->setToDate(new \DateTime());
$getOrdersRequest->setOrderStatusTypes([
"NotSet",
"Received",
"Validated",
"Invalid",
"PendingDocumentation",
"PendingEndUserAction",
"DocumentationReceived",
"DocumentationApproved",
"DocumentationNotApproved",
"PendingNicProcessing",
"PendingNicDocumentApproval",
"PendingPostProcessing",
"PendingInternalProcessing",
"Completed",
"Failed",
"AuthenticationFailed"
]);
$getOrdersRequest->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"
]);
$getOrdersRequest->setObjectTypes([
"DomainType",
"DefensiveType",
"MarkType",
"NameWatchType",
"SslCertificateType",
"LocalPresence",
"PrivacyProxy",
"MarkExtendedService",
"SanSsl"
]);
$getOrdersRequest->setOrderSort(ascio\SearchOrderSortType::CreatedAsc);
$getOrdersRequest->setPageInfo($pageInfo);
$getOrdersRequest->setObjectNames([
]);
$getOrdersRequest->setObjectHandles([
]);
$getOrdersRequest->setOrderIds([
]);
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.