- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plansGET
- List serversGET
- Server statusGET
- Get a serverGET
- Server metricsGET
- BandwidthGET
- Deploy new serverPOST
- Start a serverPOST
- Restart a serverPOST
- Stop a serverPOST
- Power offPOST
- Cancel serverPOST
- Undo cancel requestDELETE
- Change passwordPUT
- Update hostnamePUT
- Update SSH KeysPATCH
- Modify ISOsPOST
- RestorePOST
- Renew serverPOST
- Reinstall ServerPOST
- Change Primary IPPOST
- Calculate renew amountPOST
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Reinstall Server
POST
https://api.vpsbg.eu/v1/servers/{id}/reinstall
Servers
The data on the server will be DELETED. This is irreversible.
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
stringÂ
required
Header Params
Accept
stringÂ
required
Default:
application/json
Body Params application/json
current_password
stringÂ
optional
otp
numberÂ
optional
password
stringÂ
optional
ssh_keys
array[integer]
optional
image_id
integerÂ
required
cpanel_install
booleanÂ
optional
Default:
false
windows_license
booleanÂ
optional
Default:
false
Example
{
"current_password": "string",
"otp": 0,
"password": "string",
"ssh_keys": [
12641
],
"image_id": 0,
"cpanel_install": false,
"windows_license": false
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vpsbg.eu/v1/servers//reinstall' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢204No Content
application/json
Body
object {0}
Example
{}
🔴500Server Error
🟠422Validation error (specified in the response)
Modified at 2025-03-26 15:19:01