Ascio DNS
Class User
| Property | Description |
|---|---|
| CreatedDate | |
| Example: "administrator@ascio-test-domain.com" | |
| Name | Example: "ascio-is-great.com" |
| Password | |
| RequireTfa | |
| RequiredToChangePassword | |
| Role | |
| TfaSetupComplete | |
| UpdatedDate | |
| UserName |
use SOAP::Lite;
use Date::Format;
$proxy = "https://dnsservice.demo.ascio.com/DnsService.svc";
$namespace = "http://www.ascio.com/2007/01";
$soap = SOAP::Lite->on_action( sub { "" } )->proxy($proxy);
$soap->autotype(0);
$method = SOAP::Data->name("User")->attr({xmlns => $namespace});
#User
$user = \SOAP::Data->value(
SOAP::Data->name('CreatedDate',time2str('%Y-%m-%dT%H:%M:%SZ', time, 'EST')),
SOAP::Data->name('Email',"administrator@ascio-test-domain.com"),
SOAP::Data->name('Name','ascio-is-great.com'),
SOAP::Data->name('Password','PasswordTest'),
SOAP::Data->name('RequireTfa',''RequireTfaTest''),
SOAP::Data->name('RequiredToChangePassword',''RequiredToChangePasswordTest''),
SOAP::Data->name('Role','RoleTest'),
SOAP::Data->name('TfaSetupComplete',''TfaSetupCompleteTest''),
SOAP::Data->name('UpdatedDate',time2str('%Y-%m-%dT%H:%M:%SZ', time, 'EST')),
SOAP::Data->name('UserName','UserNameTest')
);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.