Remove a domain from the second market

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

Withdraw the sale of a domain from a given plateform.

REQUIRED

  • idSession string (32)
    Session ID.
  • plateform string (255)
    The plateform from which the sale must be removed (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->SecMarketRemove($idSession, "SEDO", "my-domain.com");   print_r($StructOperationResponse); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; }   if (isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>