API Changelog
All changes to the Raff public API. Current version: v1.0.0 (beta). π’ Added Β· π΅ Updated Β· π‘ Deprecated Β· π΄ Removed Β· π£ Fixedv1.0.0 (Beta)
May 14, 2026
Virtual Machines β API- π΅ Updated β Backups now run as incremental backup series instead of one full image per call. Only changed blocks are stored after the first baseline, cutting storage and transfer dramatically. Existing backups taken before this change keep working unchanged β they restore identically to today.
- π΅ Updated β
storage_sizeonBackupis now MB (was GB). Incremental restore points are often a few MB; the previous integer-GB column rounded them up to 1 GB and overstated both display and billing. Existing rows have been backfilled (old_value_in_GB * 1024) so customer-visible amounts stay consistent. Clients should display in MB up to 1024, else convert to GB. - π’ Added β
increment_idfield onBackupβGET /api/v1/backups. Position of a restore point within an incremental series;nullfor legacy standalone backups. - π’ Added β Delete backup series β
DELETE /api/v1/backups/{id}/chain. Removes every restore point in a series in one call. Use this when Delete backup reports that older points depend on the one being deleted. - π’ Added β Reset backup series β
POST /api/v1/vms/{id}/backups/reset-chain. Starts a fresh baseline on the next backup; existing restore points stay restorable.
May 10, 2026
Virtual Machines β API- π’ Added β
macfield onVMNetworkβGET /api/v1/vms/{id}/networks. Stable per-NIC MAC address. The backend already returned it; spec now documents it so generated clients expose it.
- π£ Fixed β
pricing_idnow auto-derived fromvolume_type+regiononPOST /api/v1/volumes. The public spec never required customers to supply it, but the billing middleware did β every CLI/Terraform/curl request was returning 400 until you looked it up out-of-band. - π£ Fixed β
filesystem_typeis now honored. A wire-mapping bug in vm-service was discarding the value and validatingvolume_type(e.g.nvme) as if it were a filesystem, rejecting all validext4/xfs/""combinations with βfilesystem_type must be empty (manual), ext4, or xfsβ. - π΅ Updated β pricing_id required-error now points at
raff pricing vm(CLI) anddata.raff_vm_pricing(Terraform) alongside the HTTP path.
- π£ Fixed β Add-payment-method (
POST /api/v1/billing/payment-methods) now returns 503 if Airwallexβs payment-source linking step fails, instead of saving an unusable row that looked like a working primary card. Customers no longer end up with a dashboard-confirmed card that fails the first time the API tries to charge it. - π£ Fixed β βPayment method not configured for automatic billingβ error correctly identifies the affected row (filters by
provider_typeand non-empty source ID) instead of firing on any active payment row. - π΅ Updated β Error messages link to
app.rafftechnologies.comregardless of environment (was hardcoded to a local-dev hostname).
- π’ Added β
raff vm create --no-vpcβ create a VM with only a public IP, no VPC at all. (raff-cli v0.3.5) - π’ Added β
MACcolumn onraff vm networks. (raff-cli v0.3.6) - π΅ Updated β
raff vm create --helplong help spells out all four networking modes (existing VPC / new VPC / no VPC / auto VPC). (raff-cli v0.3.4) - π΅ Updated β
raff vm getshows base disk and attached volumes as separate rows (was a single collapsed βStorageβ row). (raff-cli v0.3.4) - π΅ Updated β
vm networkspublic-pool NICs show(public pool)instead of an emptyNETWORKcell. (raff-cli v0.3.4)
- π΅ Updated β
raff volume create --typehelp enumeratesnvme(was a misleading βe.g. standardβ). (raff-cli v0.3.3) - π΅ Updated β
raff pricing volumetable view shows theIDcolumn. (raff-cli v0.3.3)
- π΅ Updated β Security-group attachment count now labeled βAttached VMsβ everywhere (was inconsistent β
VMSin list,Attached NICsin get). (raff-cli v0.3.4) - π΄ Removed β Unexplained
SIZEcolumn fromraff sg getrules subtable. (raff-cli v0.3.4)
- π’ Added β
data "raff_vm_networks"β list NICs for a VM with MAC, IP, gateway, and security-group binding. (terraform-provider-raff v0.1.8) - π’ Added β
skip_vpcargument onraff_vm. (terraform-provider-raff v0.1.7) - π΅ Updated β
raff_vmschema descriptions forvpc_id/vpc_name/vpc_cidr/delete_vpc/volume_actionrewritten to spell out the actual contract instead of one-liners. (terraform-provider-raff v0.1.6) - π΅ Updated β
volume_type = "nvme"in README and Registry index examples (was an invalid"standard"). (terraform-provider-raff v0.1.4)
- π’ Added β
data "raff_vpc_cidr_suggestions"β fetch a non-overlapping CIDR for declarative VPC sizing. (terraform-provider-raff v0.1.9) - π’ Added β
data "raff_security_group_templates"β look up template IDs to pass toraff_security_group.template_id. (terraform-provider-raff v0.1.9)
- π’ Added β
data "raff_permissions"β read-only catalog of permission identifiers; supportsscopefilter (account/project). (terraform-provider-raff v0.1.9)
- π΅ Updated β Terraform Registry sidebar collapsed from 7 noisy buckets to a single
Virtual Machinessubcategory. (terraform-provider-raff v0.1.5)
- π£ Fixed β
categoryfilter onraff template list(CLI v0.3.7) anddata.raff_templates(terraform-provider-raff v0.1.10) β flag help, schema description, and README/Registry examples all incorrectly claimed values likelinux/windows. The real enum isos(Linux/Windows OS templates) ormarketplace(pre-baked apps); OS family (linux/windows/alpine/ etc.) lives on theos_typeresponse field with no API-level filter today.
- π£ Fixed β
raff_vmCreate now waits for the VM to reachactivebefore returning. Previouslyterraform applyreturned as soon as the API accepted the request, sopublic_ipv4/private_ipv4were empty until the customer ranterraform refresh. Default timeout 15 minutes; override withtimeouts { create = "20m" }. (terraform-provider-raff v0.1.11) - π΅ Updated β
volume_actiondescription onraff_vmrewritten to clarify it only governs volumes not under Terraform management (attached out-of-band via dashboard / CLI). Volumes managed byraff_volumein the same config are destroyed by Terraform independently. (terraform-provider-raff v0.1.11)
Compute β CLI
- π’ Added β
raff volume list|get|create|delete|resize|attach|detachβ documentation page for block storage volume commands. - π’ Added β
raff snapshot list|get|create|rename|restore|deleteβ documentation page for VM and volume snapshots. - π’ Added β
raff backup list|get|create|restore|deleteandraff backup schedule list|get|create|update|deleteβ documentation page for backups and recurring schedules.
- π’ Added β
raff_vpcdocumentation page β VPC resource, CIDR immutability, gateway computed attrs. - π’ Added β
raff_ipdocumentation page β floating IP reservation. - π’ Added β
raff_security_groupdocumentation page β firewall rulesets with nestedruleblocks and template seeding.
- π’ Added β
raff_volume,raff_snapshot,raff_backup,raff_backup_scheduledocumentation pages β covering immutability rules, retention semantics, and the βdonβt manage schedule-created backupsβ guidance.
- π’ Added β
raff ssh-key,raff api-key,raff member,raff role,raff permission,raff invitationdocumentation pages β full coverage of IAM commands. - π’ Added β
raff project membersubcommands documented underraff projectβ list, get, add, update, remove.
- π’ Added β
raff_ssh_key,raff_api_key,raff_role,raff_member,raff_project_memberdocumentation pages β including thesecretreturned-once warning onraff_api_keyand the composite ID format onraff_project_member.
- π’ Added β
raff region,raff template,raff pricing(CLI) and a consolidateddata-sourcespage (Terraform) coveringraff_regions,raff_templates, and the*_pricingfamily.
- π΅ Updated β Reference tab CLI and Terraform groups in
docs.jsonreorganized to expose every command group and resource in the sidebar. - π΅ Updated β
reference/cli/introduction.mdxandreference/terraform/introduction.mdxrefreshed with the full surface β coverage table now lists every resource group instead of the original 5β7.
May 8, 2026
Volumes β API- π’ Added β Volume CRUD + attach/detach β
GET/POST /api/v1/volumes,GET/DELETE /api/v1/volumes/{id},POST /api/v1/volumes/{id}/attach,POST /api/v1/volumes/{id}/detach. Create is async (202 Accepted). - π΄ Removed β
vm_id,vm_internal_id,image_id,attached_volume_idfields from volume responses (OpenNebula internal identifiers). Useidandproduct_vminstead.
- π’ Added β Snapshot CRUD + restore + rename β
GET/POST /api/v1/snapshots,GET/DELETE /api/v1/snapshots/{id},POST /api/v1/snapshots/{id}/restore,PATCH /api/v1/snapshots/{id}/rename. Supports VM and volume sources (resource_type: vm|volume).Snapshot.status = activeindicates the source has been reverted to this snapshot.
- π’ Added β Backup CRUD + restore β
GET/POST /api/v1/backups,GET/DELETE /api/v1/backups/{id},POST /api/v1/backups/{id}/restore. Create and restore are async (202 Accepted). - π’ Added β Backup schedules β
GET/POST /api/v1/backup-schedules,GET/PATCH/DELETE /api/v1/backup-schedules/{id}. Daily or weekly with configurable retention. - π΄ Removed β
schedule_id,backup_id,vm_idfrom backup/schedule responses (OpenNebula internal identifiers). Useidandproduct_vm.
- π’ Added β SSH key CRUD β
GET/POST /api/v1/ssh-keys,GET/PUT/DELETE /api/v1/ssh-keys/{id}. Account-scoped (noX-Project-IDrequired).
- π’ Added β Account Members β
GET/POST /api/v1/members,GET/PATCH/DELETE /api/v1/members/{id}. Email invite, direct add, or attach an API key as member. - π’ Added β Project Members β
GET/POST /api/v1/projects/{id}/members,GET/PATCH/DELETE /api/v1/projects/{id}/members/{member_id}. - π’ Added β Roles β
GET/POST /api/v1/roles,GET/PATCH/DELETE /api/v1/roles/{id}. Custom account- or project-scoped roles. System roles are read-only. - π’ Added β Permissions catalog β
GET /api/v1/permissions. Lists every permission string usable in role definitions. Requires a valid API key (no specific permission needed). - π’ Added β API Keys β
GET/POST /api/v1/api-keys,GET/PATCH/DELETE /api/v1/api-keys/{id},POST /api/v1/api-keys/{id}/regenerate. Full secret only returned once at create or regenerate. - π’ Added β Invitations β
POST /api/v1/invitations(account),POST /api/v1/projects/{id}/invitations(project),DELETE /api/v1/invitations/{id}(cancel). Public spec deliberately omitsInvitation.tokensince itβs the acceptance secret.
- π΄ Removed β
vm_idfrom VM responses,vnet_id/vxlan_vni/router_vm_idfrom VPC responses,ip_group_id/subnet_id/vm_idfrom floating IP responses,network_id/mac/bridge/vxlan_vnifrom VM network interface responses, and the legacy top-levelproject_id/project_namefrom API key responses. All are OpenNebula internal identifiers that the public spec already hid; the gateway response now matches the spec.
April 30, 2026
Virtual Machines β API- π’ Added β
skip_public_ipandskip_vpcflags on Create VM βPOST /api/v1/vms. Build VPC-only VMs (no public IP) or public-IP-only VMs (no VPC). Cannot be combined.
- π’ Added β Floating IP reserve/release β
POST /api/v1/ips/reserve,DELETE /api/v1/ips/{id}/reserve, plusGET /api/v1/ips,GET /api/v1/ips/{id},POST /api/v1/ips/{id}/change. Reserve runs through the same balance/billing checks as VM create (402 / 403). Release refunds remaining time pro-rata for subscription IPs. - π’ Added β VPC CRUD β
POST/GET/PUT/DELETE /api/v1/vpcs[/{id}]andGET /api/v1/vpcs/cidr-suggestions. Customers can now create and manage VPCs directly via the public API instead of only through VM creation. - π’ Added β
?type=public|vpc|ipv6query filter on List VM network interfaces βGET /api/v1/vms/{id}/networks?type=public. - π΅ Updated β
VMNetwork.typeenum now includesipv6. - π΄ Removed β
macfield from publicVMNetworkschema (still in raw response for the dashboard, hidden from public API consumers).
- π’ Added β
raff ip list|get|reserve|release|change - π’ Added β
raff vpc list|get|create|update|delete|cidr-suggestions - π’ Added β
raff vm networks <vm-id> --type public|vpc|ipv6filter
- π’ Added β Update VM note β
PATCH /api/v1/vms/{id}/notes/{type}β replaces existing note content; returns 404 if no note exists yet (usePUTto create). - π’ Added β Append to VM note β
POST /api/v1/vms/{id}/notes/{type}/appendβ concatenates new content onto the existing note (newline-separated), creates the note if missing. - π’ Added β
typequery filter on Get VM notes βGET /api/v1/vms/{id}/notes?type=personal|accountto fetch only one scope.
- π’ Added β
raff vm notes update <vm-id> --type X --content Y(errors if note missing) - π’ Added β
raff vm notes append <vm-id> --type X --content Y - π’ Added β
raff vm notes get <vm-id> --type personal|accountfilter - π’ Added β
raff vm tags list <vm-id>to discover tag IDs
April 29, 2026
Virtual Machines β API- π’ Added β Hard reboot VM for unresponsive instances β
POST /api/v1/vms/{id}/reboot-hard - π’ Added β Save VM disk as custom image β
POST /api/v1/vms/{id}/save-image - π’ Added β List VM network interfaces β
GET /api/v1/vms/{id}/networks - π’ Added β Attach/detach VM to/from VPC β
POST/DELETE /api/v1/vms/{id}/vpc[/{nic_id}] - π’ Added β Attach/detach floating IP β
POST/DELETE /api/v1/vms/{id}/ip[/{nic_id}] - π’ Added β Attach/detach security group to VM NIC β
POST/DELETE /api/v1/vms/{id}/firewall[/{sg_id}/{nic_id}] - π’ Added β Add/update/remove VM tags β
POST/PATCH/DELETE /api/v1/vms/{id}/tags[/{tagId}] - π’ Added β Get/upsert VM notes (personal + account scopes) β
GET /api/v1/vms/{id}/notes,PUT /api/v1/vms/{id}/notes/{type} - π΄ Removed β
vm_idfield from VM responses (was an OpenNebula internal identifier β useidinstead) - π΅ Updated β
BillingError.reasonenum trimmed to currently-returned values:banned,failed,no_billing_customer. Insufficient balance now consistently returns402with a plainErrorbody.
- π’ Added β
raff vm hard-reboot,raff vm save-image,raff vm networks,raff vm vpc attach|detach,raff vm ip attach|detach,raff vm sg attach|detach,raff vm tags add|update|remove,raff vm notes get|set
- π΄ Removed β
vm_idcomputed attribute fromraff_vm(was the OpenNebula int ID; useidinstead)
March 25, 2026
General- π’ Added β Changelog tracking started
March 15, 2026
Virtual Machines β API- π’ Added β Resize VM disk storage without recreating β
POST /api/v1/vms/{id}/disk/resize - π’ Added β Bulk delete VMs in a single request β
DELETE /api/v1/vms/bulk - π΅ Updated β Create VM now accepts
enable_ipv6parameter for IPv6 support βPOST /api/v1/vms
March 10, 2026
Virtual Machines β API- π’ Added β Reinstall OS on a running VM, keep your IP β
POST /api/v1/vms/{id}/reinstall - π’ Added β Factory reset VM to original state β
POST /api/v1/vms/{id}/factory-reset - π’ Added β Reset root password via API β
POST /api/v1/vms/{id}/reset-password - π’ Added β Rename VMs after creation β
POST /api/v1/vms/{id}/rename
March 5, 2026
Volumes β API- π’ Added β Resize block storage volumes attached to VMs β
PATCH /api/v1/volumes/{id}
March 3, 2026
Projects β API- π’ Added β Organize resources into projects β full CRUD via API
GET /api/v1/projectsΒ·POST /api/v1/projectsΒ·GET /api/v1/projects/{id}Β·PUT /api/v1/projects/{id}Β·DELETE /api/v1/projects/{id}
March 1, 2026
Virtual Machines β API- π’ Added β Full VM lifecycle β create, list, get details, delete
GET /api/v1/vmsΒ·POST /api/v1/vmsΒ·GET /api/v1/vms/{id}Β·DELETE /api/v1/vms/{id}
- π’ Added β VM power control β start, stop, reboot
POST /api/v1/vms/{id}/startΒ·POST /api/v1/vms/{id}/stopΒ·POST /api/v1/vms/{id}/reboot
- π’ Added β Scale resources β resize CPU and RAM on demand β
POST /api/v1/vms/{id}/resize
- π’ Added β Browse available resources β regions, OS templates, pricing (no auth required)
GET /api/v1/public/regionsΒ·GET /api/v1/public/templatesGET /api/v1/public/pricing/vmΒ·/volumeΒ·/snapshotΒ·/backupΒ·/ip