Hello
I have record for my domain:
[domain]. NS [ns1].
domain is IDN domain (starts with xn--) if it does make any difference
I don't know how to delete this record using API (I use HTTPSocket class).
I try to execute:
but it doesn't work.
A also tried it in reverse order meaning:
but it also doesn't work.
Do you have any ideas how to do it using api?
I have record for my domain:
[domain]. NS [ns1].
domain is IDN domain (starts with xn--) if it does make any difference
I don't know how to delete this record using API (I use HTTPSocket class).
I try to execute:
Code:
$sock->query('/CMD_API_DNS_CONTROL',
array(
'domain' => '[domain]',
'action' => 'select',
'arecs0' => 'name='.'[domain].'.'&value='.'[ns1].'),
));
$result = $sock->fetch_body();
but it doesn't work.
A also tried it in reverse order meaning:
Code:
$sock->query('/CMD_API_DNS_CONTROL',
array(
'domain' => '[domain]',
'action' => 'select',
'arecs0' => 'name='.'[ns1].'.'&value='.'[domain].'),
));
$result = $sock->fetch_body();
Do you have any ideas how to do it using api?