Ascio Web Service v3
PHP 5 Classes GetRegistrants
GetRegistrantsResponse GetRegistrants(SecurityHeaderDetails $securityHeader,GetRegistrantsRequest $request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
406 | Invalid ObjectClassName | |
501 | Syntax error in parameters or arguments |
GetRegistrants Request
Property |
---|
request |
GetRegistrantsResponse
Property | Description |
---|---|
GetRegistrantsResult | |
TotalCount | Example: 1 |
RegistrantInfos | |
ResultCode | Example: 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 getRegistrantsExample() {
$config = new lib\Config();
$env = $config->get("testing"); //testing or live
$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
$headers = [];
$headers[] = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
$headers[] = new \SoapHeader("http://www.ascio.com/2013/02","ImpersonationHeaderDetails", ["TransactionAccount" => "mysubaccount"], false);
$ascioClient = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
$ascioClient->__setSoapHeaders($headers);
$pageInfo = new ascio\PagingInfo();
$pageInfo->setPageIndex(1);
$pageInfo->setPageSize(1);
$request = new ascio\GetRegistrantsRequest();
$request->setHandle("JD123");
$request->setName("ascio-is-great.com");
$request->setOrgName("Ascio");
$request->setOrganisationNumber("OrganisationNumberTest");
$request->setAddress1("Address1Test");
$request->setAddress2("Address2Test");
$request->setCity("CityTest");
$request->setState("StateTest");
$request->setPostalCode("888349");
$request->setCountryCode("DK");
$request->setPhone("+45.123456789");
$request->setFax("+45.987654321");
$request->setEmail("administrator@ascio-test-domain.com");
$request->setStatus("StatusTest");
$request->setCreationFromDate(new \DateTime());
$request->setCreationToDate(new \DateTime());
$request->setOrderSort(ascio\RegistrantSortType::CreatedAsc);
$request->setPageInfo($pageInfo);
try {
$response = $ascioClient->GetRegistrants(new ascio\GetRegistrants($request));
} catch (\Exception $e) {
echo ("[".$e->faultcode . "] ". $e->faultstring);
return;
}
$result = $response->GetRegistrantsResult;
echo "Code: ".$result->getResultCode()."\n";
echo "Message: ".$result->getResultMessage()."\n";
return $result;
}
getRegistrantsExample();
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.