Unlink a domain from Netim

				
					StructOperationResponse SecMarketUnlink(string idSession, string plateform, string domain) 
			

Unlink a sale between a plateform of second market and Netim. The sale is not removed from the plateform of second market.

REQUIRED

  • idSession string (32)
    Session ID.
  • plateform string (255)
    The plateform from which the sale must be unlinked (only “SEDO“ is available for now).
  • domain string (255)
    Domain name.

An Object of type StructOperationResponse

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