CARVIEW |
Select Language
HTTP/1.1 200 OK
Server: nginx
Date: Wed, 16 Jul 2025 22:26:03 GMT
Content-Type: text/html;charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
X-XQuery-Cached: true
Set-Cookie: JSESSIONID=node0nd2p18qnpih75w06zkfaq9t939092.node0; Path=/exist
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Security-Policy: frame-ancestors 'self'
Vary: Accept-Encoding, User-Agent
Content-Encoding: gzip
Delete Registrant - Ascio API v3

Ascio Web Service v3
PHP 5 Classes DeleteRegistrant

DeleteRegistrantResponse DeleteRegistrant(SecurityHeaderDetails $securityHeader,DeleteRegistrantRequest $request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
501 | Syntax error in parameters or arguments |
DeleteRegistrant Request
Property |
---|
request |
DeleteRegistrantResponse
Property |
---|
DeleteRegistrantResult |
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 deleteRegistrantExample() {
$config = new lib\Config();
$env = $config->get("testing"); //testing or live
$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
$headers = [];
$headers[] = new \SoapHeader("https://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
$headers[] = new \SoapHeader("https://www.ascio.com/2013/02","ImpersonationHeaderDetails", ["TransactionAccount" => "mysubaccount"], false);
$ascioClient = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
$ascioClient->__setSoapHeaders($headers);
$request = new ascio\DeleteHandleRequest();
$request->setHandle("JD123");
try {
$response = $ascioClient->DeleteRegistrant(new ascio\DeleteRegistrant($request));
} catch (\Exception $e) {
echo ("[".$e->faultcode . "] ". $e->faultstring);
return;
}
$result = $response->DeleteRegistrantResult;
echo "Code: ".$result->getResultCode()."\n";
echo "Message: ".$result->getResultMessage()."\n";
return $result;
}
deleteRegistrantExample();
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.