Skip to main content
PUT
/
servers
/
{server}
/
ips
/
{address}
/
rdns
Set reverse DNS
curl --request PUT \
  --url https://console.cloudblast.io/api/v2/servers/{server}/ips/{address}/rdns \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rdns": "server1.example.com"
}
'
{
  "data": {
    "address": "203.0.113.50",
    "type": "ipv4",
    "gateway": "203.0.113.1",
    "cidr": 24,
    "rdns": "server1.example.com"
  }
}

Authorizations

Authorization
string
header
required

API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.

Path Parameters

server
string
required

Server UUID (36 chars) or short UUID (8 chars)

address
string
required

The IP address

Body

application/json
rdns
string
required

The reverse DNS hostname

Maximum string length: 255
Example:

"server1.example.com"

Response

Updated IP address

data
object