vserver_software_iso_unmount ()
The function disconnects the ISO image from the specified VPS.
HTTP Method: | GET | |
---|
Parameters: | sid | session id* |
---|
| vserver_id | unique id of VPS* |
Returns: | HTTP code | 200 (OK) |
---|
| | Function call was successful. The ISO image was disconnected. 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.
|
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_software_iso_mount?sid=%sid%&vserver_id=%vserver_id%&iso_id=%iso_id%"
PHP Library
$api->vserver_software_iso_mount(array(
'vserver_id' => %vserver_id%,
'iso_id' => %iso_id%,
));
Example of data output
<?xml version="1.0" encoding="UTF-8"?>
<reply>
<status>
<code>0</code>
<text>OK</text>
</status>
</reply>