This API call removes a AAAA (IPv6 Address) record from a specified DNS zone. AAAA records map a domain name to an IPv6 address, enabling IPv6-based connectivity. Deleting an AAAA record disconnects the domain from the associated IPv6 address, which may impact IPv6-enabled services and users. This API provides network administrators with fine-grained control over IPv6 DNS configurations, ensuring smooth network transitions and accurate domain resolution.
Note: Ensure that no critical services rely solely on IPv6 before deletion.
If transitioning from IPv6 to IPv4-only, verify that an A record (IPv4) exists for continued access.
If updating an IPv6 address, consider modifying the record instead of deleting it.
Method: DELETE
https://{appconsole_IP}:{9443}/api/dns/zone/{zone_pk}/AAAA/{pk}/
The following headers must be included in the API request for successful authentication and data submission:
Authorization: DDI Central's OAuth implementation uses the Bearer authentication scheme. Hence, while making API calls, access_token obtained via the OAuth 2.0 Client Credentials Grant must be included in the Authorization header of API requests. This token verifies the client’s identity and ensures appropriate permissions for accessing resources.
The Authorization Header follows the format below:
headers = { "Authorization": "Bearer {bearer_tk}" }
Content-Type: Required in the header to indicate the media type of the resource being sent. It helps the server at the receiving end understand how to process the transmitted request body.
The Content-Type Header follows the format below:
headers ={ "Content-Type": "application/json" }
5867.6460.
* - Mandatory parameter.
Copied
{
"message":"Deleted successfully"
}