Revoke certificate

				
					StructOperationResponse sslRevoke(string IDSession, string IDSSL)
				
			

Revoke a SSL Certificate.

REQUIRED


  • IDSession string (32)
    Session ID.
  • IDSSL string
    SSL certificate ID (SSL-XXXX-XX).

An Object of type StructOperationResponse

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