DomainZoneDelete
From FranceDNS
Release | Runtime |
---|---|
API >= 2.0 | Synchronous |
Description
Deletes a DNS record into the domain's zonefile
StructOperationResponse domainZoneDelete(string idSession, string domain, string subdomain, string type, string value)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name | |
string (255) | subdomain | Sub domain | |
string | type | Type of DNS record | |
string (150) | value | Value of DNS record |
Return
A structure StructOperationResponse
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $StructOperationResponse = $clientSOAP->domainZoneDelete($idSession, "francedns.com", "www", "A", "192.168.0.1"); print_r($StructOperationResponse); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Deletes a DNS record into the domain's zonefile
int domainZoneDelete(string idSession, string domain, string subdomain, string type, string value)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name | |
string (255) | subdomain | Sub domain | |
string | type | Type of DNS record | |
string (150) | value | Value of DNS record |
Return
A tracking number
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $trackingID = $clientSOAP->domainZoneDelete($idSession, "francedns.com", "www", "A", "192.168.0.1"); echo($trackingID); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } ?>
JAVA
DRSServiceLocator service = new DRSServiceLocator(); String idSession; int trackingID; try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); trackingID = port.domainZoneDelete(idSession, "francedns.com", "www", "A", "192.168.0.1"); System.out.println(trackingID); port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }