Skip to main content
POST
/
api
/
v1
/
vms
/
{id}
/
start
Start VM
curl --request POST \
  --url https://api.raffcomputing.com/api/v1/vms/{id}/start \
  --header 'X-API-Key: <api-key>' \
  --header 'X-Project-ID: <x-project-id>'
{
  "success": true,
  "message": "Operation completed successfully"
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Each key is bound to a specific account.

Headers

X-Project-ID
string<uuid>
required

Project ID. Required for all mutating operations (create, delete, power actions, resize).

Path Parameters

id
string<uuid>
required

VM ID (UUID)

Response

VM started

success
boolean
Example:

true

message
string
Example:

"Operation completed successfully"