v1

latestOpenAPI 3.1.02026-07-2616459400.5 KB
IP Management API

Configure Reverse DNS

This allows a parent account to configure reverse DNS for a dedicated IP address by mapping it to a sending domian.

post/ip/request/rdns/configure

Request body

ip_addressstring ipv4 required

The dedicated IP address for which reverse DNS should be configured. Must ve a valid IPv4 or IPv6 address. The IP must belong to the authenticated parent account.

sending_domainstring hostname required

The sending domain that should be mapped to the IP. Must be a valid domain name format. The domain must be owned and active for the account.

Example request

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

Response

RDNS configuration request submitted successfully

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 configuration request submitted successfully"
}