VPS_stopVirtualMachineV1
Power off a specified running virtual machine. Use this endpoint to stop VPS instances by providing the Virtual Machine ID. If the VM is already stopped, the request processes without effect.
Instructions
Stop a specified virtual machine.
If the virtual machine is already stopped, the request will still be processed without any effect.
Use this endpoint to power off running VPS instances.
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"
}