VPS_deleteSnapshotV1
Remove a virtual machine snapshot by specifying its ID. Use this endpoint to delete VPS snapshots from the Hostinger MCP server for efficient infrastructure management.
Instructions
Delete a snapshot of a specified virtual machine.
Use this endpoint to remove VPS snapshots.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| virtualMachineId | Yes | Virtual Machine ID |
Input Schema (JSON Schema)
{
"properties": {
"virtualMachineId": {
"description": "Virtual Machine ID",
"type": "integer"
}
},
"required": [
"virtualMachineId"
],
"type": "object"
}
Implementation Reference
- types.d.ts:2378-2386 (schema)Schema definition for the VPS_deleteSnapshotV1 tool, defining the input parameter 'virtualMachineId' of type number and response as any."VPS_deleteSnapshotV1": { params: { /** * Virtual Machine ID */ virtualMachineId: number; }; response: any; // Response structure will depend on the API };