Skip to content

Delete Firewall Rule From VM

Deletes a firewall rule associated with a virtual machine. Provide the virtual machine ID and the firewall rule ID in the path to remove the specified rule from the specified virtual machine.

HTTP Request

DELETE {API_URL}/virtual-machines/{id}/firewall-rules/{rule_id}

Path parameters

ParametersRequirementsTypeDescription
idRequiredstringThe unique identifier of the virtual machine for which to retrieve details.
rule_idRequiredstringThe ID of the firewall rule to be deleted.

Reponse Attributes

status boolean

Indicates the result of the request to delete a firewall rule from a virtual machine. true signifies success, while false indicates an error.

message string

A description of the status of the request.

Example

Request

curl -X DELETE '{API_URL}virtual-machines/{id}/firewall-rules' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'refresh-token: {REFRESH_TOKEN}' \
-H 'Content-Type: application/json'

Response

{
    "status": true,
    "message": "Deleting firewall rule successful"
}