Ascio DNS
PHP 5 CreateZone
Creates a zone in AscioDNS. Records can be provided, but are not mandatory. The owner is a user that was created with CreateUser
Response CreateZone(CreateZone $createZone)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
400 | Parameter value error - Null or invalid value | |
401 | Authorization failed | |
403 | Access denied | |
414 | User not found |
CreateZone Request
Property | Description |
---|---|
zoneName | Example: "testing-ascio.com" |
owner | |
records |
CreateZoneResponse
Property |
---|
CreateZoneResult |
PHP 5 example
<?php
$wsdl = "https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl";
//$wsdl = "https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl";
$client = new SoapClient($wsdl,[ "trace" => 1, "soap_version" => SOAP_1_1)];
$headers = [];
$headers[] = new SoapHeader($ns,"UserName", "user");
$headers[] = new SoapHeader($ns, "Password", "password");
$client->__setSoapHeaders($headers);
//Record
$record = [
"Source" => "www.testing-ascio.com",
"TTL" => 3600,
"Target" => "5.6.7.8"
];
//ArrayOfRecord
$records = [
"Record" => [$record]
];
//CreateZone
$createZone = [
"zoneName" => "testing-ascio.com",
"owner" => "zoneownername",
"records" => $records
];
try{
$result = $client->createZone($createZone);
echo "ResultCode : ".$result->CreateZoneResult->ResultCode."\r\n";
echo "ResultMessage : ".$result->CreateZoneResult->ResultMessage."\r\n";
if(is_array($result->CreateZoneResult->Errors->string)) {
echo "Errors:\r\n";
foreach($result->CreateZoneResult->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.