Ascio Web Service v3
PHP 5 Classes DeleteContact
DeleteContactResponse DeleteContact(SecurityHeaderDetails $securityHeader,DeleteContactRequest $request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
406 | Unexpected objectClass | |
501 | Syntax error in parameters or arguments |
DeleteContact Request
Property |
---|
request |
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 deleteContactExample() {
$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);
$request = new ascio\DeleteHandleRequest();
$request->setHandle("JD123");
try {
$response = $ascioClient->DeleteContact(new ascio\DeleteContact($request));
} catch (\Exception $e) {
echo ("[".$e->faultcode . "] ". $e->faultstring);
return;
}
$result = $response->DeleteContactResult;
echo "Code: ".$result->getResultCode()."\n";
echo "Message: ".$result->getResultMessage()."\n";
return $result;
}
deleteContactExample();
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.