POST
/
del
/
ptr
curl --request POST \
  --url https://dns-api.edis.at/del/ptr \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data signature=session_signature_12345 \
  --data kvm_id=kvm_123456_789012 \
  --data valid_until=2025-01-12T15:30:00Z \
  --data api_host=dns-api.edisglobal.com \
  --data 'ip=[
  "192.168.1.1",
  "192.168.1.2",
  "2001:db8:abcd:0012::1"
]'
{
  "status": "success"
}

Body

application/x-www-form-urlencoded
Required parameters to delete PTR records.
signature
string

The session signature obtained from the "Create AUTH-session" call.

kvm_id
string

The unique identifier of the KVM to delete PTR records for.

valid_until
string

The expiration timestamp of the session obtained from the "Create AUTH-session" call.

api_host
string

The API host URL obtained from the "Create AUTH-session" call.

ip
string[]

A JSON-encoded list of IP addresses to delete their PTR records.

Response

200
application/json
PTR records deleted successfully.
status
string

The status of the operation.

Was this page helpful?