DewaVPS

Update hostname

PATCH
/instance/{instance_uuid}/update-hostname

Update the hostname of an instance.

Authorization

ApiKeyAuth
x-apikey<token>

In: header

Path Parameters

instance_uuid*string

UUID of the instance

Formatuuid

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

hostname*string

New hostname

Response Body

application/json

curl -X PATCH "https://api.dewavps.com/v1/instance/497f6eca-6276-4993-bfeb-53cbbbba6f08/update-hostname" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'hostname=string'
{
  "message": "Hostname successfully updated",
  "data": {
    "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
    "hostname": "string"
  }
}