v12

latestOpenAPI 3.0.3raw.githubusercontent.com2026-06-1811583196.1 KB
Virtual Machines

Remove VM tag

Remove a tag from a VM. Returns the updated full tag list for the VM.

Finding the tag ID

Tags are returned in the tags array of GET /api/v1/vms/{id}. Each tag includes its id, name, priority, and created_at. Use the tag's id as tagId here.

delete/api/v1/vms/{id}/tags/{tagId}

Path parameters

idstring uuid required

VM ID (UUID)

tagIdstring uuid required

Tag ID (UUID). Get it from the tags array on GET /api/v1/vms/{id} — each tag has an id field.

Headers

X-Project-IDstring uuid required

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

Response

Tag removed

successboolean required

Example response

{
  "success": true
}