Renew certificate

				
					StructOperationResponse sslRenew(string IDSession, string IDSSL, int duration)
				
			

Renew a SSL certificate for a new subscription period.

REQUIRED


  • IDSession string (32)
    Sesssion ID.
  • IDSSL string
    SSL certificate ID (SSL-XXXX-XX).
  • duration integer
    Duration (only possible value is 1).

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->sslRenew($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); 
} 
?>