Delete user

				
					StructOperationResponse WebHostingDBUserDelete(string $IDsession, string $id, string $username)
				
			

Delete a database user

REQUIRED

  • idSession string (32)
    Session ID.
  • id string
    Hosting ID.
  • username string
    Name of the user to be deleted.

An Object of type StructOperationResponse

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