Synchronise domains on a plateform

				
					StructOperationResponse SecMarketSynchro(string idSession, string plateform) 
			

Request the synchronization of the sales on a given plateform.

REQUIRED

  • idSession string (32)
    Session ID.
  • plateform string (255)
    The plateform from which the sales must be synchronized (only “SEDO“ is available for now).

A Boolean

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