Delete domain web forward

				
					StructOperationResponse domainWebFwdDelete(string idSession, string fqdn)
				
			

Delete a web forward.

REQUIRED


  • idSession string (32)
    Session ID.
  • fqdn string (255)
    Hostname (fully qualified domain name).

An Object of type StructOperationResponse

<?php
$clientSOAP = new SoapClient("http://URL.wsdl");
 
try
{
      $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN");
 
      $StructOperationResponse = $clientSOAP->domainWebFwdDelete($idSession, "subdomain.netim.com");
 
      print_r($StructOperationResponse);
}
catch(SoapFault $fault)
{
      echo "Exception : " .$fault->getMessage(). "\n";
}
 
if (isset($idSession))
{
      $clientSOAP->sessionClose($idSession);
}
?>