Skip to main content
GET
/
vm
/
{vm_id}
/
rdns
List reverse DNS (PTR) records
curl --request GET \
  --url https://api.cloud.onidel.com/vm/{vm_id}/rdns \
  --header 'Authorization: Bearer <token>'
{
  "rdns": [
    {
      "ip": "203.0.113.5",
      "domain": "host.example.com"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vm_id
string<uuid>
required

VM UUID

Query Parameters

team_id
string

Team ID. Default team will be used if not provided.

Response

Successful operation

rdns
object[]