Skip to main content
POST
/
servers
/
{server}
/
actions
Send power action
curl --request POST \
  --url https://console.cloudblast.io/api/v2/servers/{server}/actions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "start"
}
'
{
  "data": {
    "action": "<string>",
    "status": "initiated"
  }
}

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
action
enum<string>
required

The power action to perform

Available options:
start,
shutdown,
restart,
reset,
kill,
suspend,
resume

Response

Action initiated

data
object