cURL
curl --request PATCH \ --url https://console.cloudblast.io/api/v2/servers/{server}/rename \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "my-web-server" } '
{ "data": { "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "uuid_short": "a1b2c3d4", "name": "Starter VPS", "status": null, "cpu": 2, "memory": 2147483648, "disk": 42949672960, "bandwidth_usage": 536870912, "bandwidth_limit": 1073741824000, "node_id": 1, "created_at": "2026-01-10T14:00:00+00:00", "ip_addresses": [ { "address": "203.0.113.50", "type": "ipv4", "gateway": "203.0.113.1", "cidr": 24, "rdns": "server1.example.com" } ] } }
Updates the display name of a server.
API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.
Authorization: Bearer <token>
Server UUID (36 chars) or short UUID (8 chars)
New server name
40
"my-web-server"
Updated server
Show child attributes