vserver_ipv6_subnet_rdns_edit ()
The function for changing the reverse record of the given IPv6 address.This function is available only, if the customer at us, has defined their own IPv6 range. Otherwise, send an authorized request to order a range.
HTTP Method: | GET | |
---|
Parameters: | sid | session id* |
---|
| ipv6_address_id | unique IPv6 ID* |
| hostname | DNS name for IPv6 address* |
Returns: | HTTP code | 200 (OK) |
---|
| | Function call successful. Reply portion reply is empty. |
Return errors
Error code | HTTP response code | Description |
---|
1 | 400 (Bad request) |
Function was not performed, because all required parameters were not entered. Reply portion reply is empty.
|
3 | 403 (Forbidden) |
Function call failed, invalid sid parameter. Create new sid using /api/login function. Reply portion reply is empty.
|
4 | 400 (Bad request) |
Function call failed, some parameter(s) have invalid value (e.g. contains invalid characters. Reply portion reply specifies invalid parameters.
|
5 | 403 (Forbidden) |
Function was not performed, because it is probably an attempt to manipulate a subnet, that is not under your management. Reply portion reply is empty.
|
CURL
curl "https://admin.systems90.cz/api/vserver_ipv6_subnet_rdns_edit?sid=%sid%&ipv6_address_id=%ipv6_address_id%&hostname=%hostname%"
PHP Library
$api->vserver_ipv6_subnet_rdns_edit(array(
'ipv6_address_id' => %ipv6_address_id%,
'hostname' => %hostname%,
));
Example of data output
<?xml version="1.0" encoding="UTF-8"?>
<reply>
<status>
<code>0</code>
<text>Reverse DNS removed</text>
</status>
</reply>