Get contact information

				
					StructContactReturn contactInfo(string idSession, string idIdentifiant)
				
			

Return all information about a contact object.

REQUIRED


  • idSession string (32)
    Session ID.

  • idIdentifiant string (12)
    ID of the contact to be queried.

An Object of type StructContactReturn

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