Skip to content

Delete Bare Metal Instance

Permanently deletes a bare metal instance. Supply the bare metal instance ID in the path to delete the specified bare metal instance.

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}bare-metal/instances/{id}

Path parameters

ParametersRequirementsTypeDescription
idRequiredstringThe unique identifier of the bare metal instance for which to retrieve details.

Reponse Attributes

status boolean

Indicates the result of the request to delete the bare metal instance. true signifies success, while false indicates an error.

message string

A description of the status of the request to delete the bare metal instance.

Example

Request

curl -X DELETE '{API_URL}bare-metal/instances/{id}' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'refresh-token: {REFRESH_TOKEN}' \
-H 'Content-Type: application/json'

Response

{
    "status": true,
    "message": "Deleting bare metal instance successful"
}