Skip to main content
POST
/
vms
/
{vm_id}
/
set-label
Set VM label
curl --request POST \
  --url https://api.nova-cloud.ai/vms/{vm_id}/set-label \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "instance_label": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Use a JWT access token or API key (prefixed with nv_)

Path Parameters

vm_id
string<uuid>
required

Body

application/json
instance_label
string | null

Instance label (max 32 characters, ASCII only)

Maximum string length: 32

Response

200 - application/json

Label updated

message
string