Skip to main content
POST
/
servers
/
{server}
/
reinstall
Reinstall OS
curl --request POST \
  --url https://console.cloudblast.io/api/v2/servers/{server}/reinstall \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "template_slug": "ubuntu-24.04",
  "password": "myNewPassword123"
}
'
{
  "data": {
    "status": "reinstalling",
    "password": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.

Path Parameters

server
string
required

Server UUID (36 chars) or short UUID (8 chars)

Body

application/json
template_slug
string
required

Template slug (e.g., ubuntu-24.04)

Example:

"ubuntu-24.04"

password
string

New root password. If omitted, one will be generated.

Minimum string length: 8
Example:

"myNewPassword123"

Response

Reinstall initiated

data
object