Ascio Web Service v3
Class GetRegistrantsRequest
Property | Description |
---|---|
Handle | Example: "JD123" |
Name | Example: "ascio-is-great.com" |
OrgName | Example: "Ascio" |
OrganisationNumber | |
Address1 | |
Address2 | |
City | |
State | |
PostalCode | Example: "888349" |
CountryCode | Example: "DK" |
Phone | Example: "+45.123456789" |
Fax | Example: "+45.987654321" |
Example: "administrator@ascio-test-domain.com" | |
Status | |
CreationFromDate | |
CreationToDate | |
OrderSort | |
PageInfo |
<?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);
$getRegistrantsRequest = new ascio\GetRegistrantsRequest();
$getRegistrantsRequest->setHandle("JD123");
$getRegistrantsRequest->setName("ascio-is-great.com");
$getRegistrantsRequest->setOrgName("Ascio");
$getRegistrantsRequest->setOrganisationNumber("OrganisationNumberTest");
$getRegistrantsRequest->setAddress1("Address1Test");
$getRegistrantsRequest->setAddress2("Address2Test");
$getRegistrantsRequest->setCity("CityTest");
$getRegistrantsRequest->setState("StateTest");
$getRegistrantsRequest->setPostalCode("888349");
$getRegistrantsRequest->setCountryCode("DK");
$getRegistrantsRequest->setPhone("+45.123456789");
$getRegistrantsRequest->setFax("+45.987654321");
$getRegistrantsRequest->setEmail("administrator@ascio-test-domain.com");
$getRegistrantsRequest->setStatus("StatusTest");
$getRegistrantsRequest->setCreationFromDate(new \DateTime());
$getRegistrantsRequest->setCreationToDate(new \DateTime());
$getRegistrantsRequest->setOrderSort(ascio\RegistrantSortType::CreatedAsc);
$getRegistrantsRequest->setPageInfo($pageInfo);
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.