Set PTR
This endpoint sets PTR (Reverse DNS) records for specified IP addresses.
The api_host
parameter, obtained from the “Create AUTH-session” response,
is dynamically set in the URL.
Provide the signature
, kvm_id
, valid_until
, and a JSON-encoded object of IP addresses and their associated hostnames to set PTR records.
Body
The session signature obtained from the "Create AUTH-session" call.
"session_signature_12345"
The unique identifier of the KVM to set PTR records for.
"kvm_123456_789012"
The expiration timestamp of the session obtained from the "Create AUTH-session" call.
"2025-01-12T15:30:00Z"
The API host URL obtained from the "Create AUTH-session" call.
"dns-api.edisglobal.com"
A JSON-encoded object of IP addresses and their associated hostnames.
{
"192.168.1.1": "hostname.example.com",
"192.168.1.2": "another-host.example.com"
}
Was this page helpful?