v1

latestOpenAPI 3.1.02026-07-2616459400.5 KB
IP Management API

Validate reverse DNS

This allows a parent account to verify whether the reverse DNS configuration for a dedicated IP address is correctly set up.

post/ip/request/rdns/validate

Request body

ip_addressstring ipv4 required

The dedicated IP address for RDNS configuration. Must be a valid IPv4 or IPv6 address. The IP must belong to the authenticated parent account.

sending_domainstring hostname required

The sending domain associated with theIP. Must be in valid domain name format. Must also be owned and active account.

Example request

{
  "ip_address": "192.168.1.100",
  "sending_domain": "mail.example.com"
}

Response

RDNS validation completed

request_idstring
ipstring
rdnsstring
sending_domainstring
messagestring

Example response

{
  "request_id": "RDNS-REQ-2024-001-XYZ789",
  "ip": "192.168.1.100",
  "rdns": "mail.example.com",
  "sending_domain": "mail.example.com",
  "message": "Reverse DNS validation completed"
}