Ascio DNS
PHP 5 CreateRecord
Adds a record to a zone. Please provide at least an source and a target. If names are used, FQDNs (which includes the zone-name) are needed. The zone must existName, and the permissions must match.
Possible record-type that can be created are: WebForward, SRV, CNAME, SOA, TXT, PTR, MX, A, AAAA, NS, MailForward. A record wit the type 'Record' are invalid.

Response CreateRecord(CreateRecord $createRecord)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
501 | Syntax error in parameters or arguments | |
506 | Required attribute missing in request |
CreateRecord Request
Property | Type | Description |
---|---|---|
zoneName | Example: "testing-ascio.com" | |
record |
CreateRecordResponse
Property | Description |
---|---|
CreateRecordResult | |
recordId | Example: 1 |
PHP 5 example
<?php
$wsdl = "https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl";
//$wsdl = "https://aws.ascio.com/2012/01/01/AscioService.wsdl";
$client = new SoapClient($wsdl,array( "trace" => 1 ));
//WebForward
$record = [
"Source" => "www.testing-ascio.com",
"Target" => "5.6.7.8"
];
//CreateRecord
$createRecord = [
"zoneName" => "testing-ascio.com",
"record" => new SoapVar($record, SOAP_ENC_OBJECT, "WebForward", "http://www.ascio.com/2013/02","record","http://www.ascio.com/2013/02")
];
try{
$result = $client->createRecord($createRecord);
echo "ResultCode : ".$result->CreateRecordResult->ResultCode."\r\n";
echo "ResultMessage : ".$result->CreateRecordResult->ResultMessage."\r\n";
if(is_array($result->CreateRecordResult->Errors->string)) {
echo "Errors:\r\n";
foreach($result->CreateRecordResult->Errors->string as $key => $value) {
echo " - " . $value."\r\n";
}
}
} catch(Exception $e) {
echo $e->getMessage();
}
WSDL AscioDns
https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl (OTE)
https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl (OTE)
https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.