vserver_ip_address_set_hostname ()
Function to set and change the reverse record of other IP addresses. This function is available only, if the customer at us, has defined their own IP range. Otherwise, send an authorized request to order a range.
HTTP Method: | GET | |
---|
Parameters: | sid | session id* |
---|
| ip_address_id | unique IP address id* |
| hostname | DNS name* |
Returns: | HTTP code | 200 (OK) |
---|
| | Function call was successful. The reverse DNS has been changed. 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 has not been performed, because it is probably an attempt to manipulate VPS that is not in your administration. Reply portion reply is empty.
|
CURL
curl "https://admin.hosting90.eu/api/vserver_ip_address_set_hostname?sid=%sid%&ip_address=%ip_address%&ip_address_id=%ip_address_id%&hostname=%hostname%"
PHP Library
$api->vserver_ip_address_set_hostname(array(
'ip_address' => %ip_address%,
'ip_address_id' => %ip_address_id%,
'hostname' => %hostname%,
));
Example of data output
<?xml version="1.0" encoding="UTF-8"?>
<reply>
<status>
<code>0</code>
<text>Hostname changed</text>
</status>
</reply>