Delete VM Instance
Permanently deletes a virtual machine. Supply the virtual machine ID in the path to delete the specified virtual machine.
NOTE
Upon performing the delete operation, the server is immediately released, becomes inaccessible, and all data is permanently erased. Billing ceases once the server is deleted.
HTTP Request
DELETE
{API_URL}virtual-machines/{id}
Path parameters
Parameters | Requirements | Type | Description |
---|---|---|---|
id | Required | string | The unique identifier of the virtual machine for which to retrieve details. |
Reponse Attributes
status boolean
Indicates the result of the request to delete the virtual machine. true
signifies success, while false
indicates an error.
message string
A description of the status of the request to delete the virtual machine.
Example
Request
curl -X DELETE '{API_URL}virtual-machines/{id}' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'refresh-token: {REFRESH_TOKEN}' \
-H 'Content-Type: application/json'
Response
{
"status": true,
"message": "Deleting virtual machine successful"
}