delete_domain
Remove a DNS domain and all associated records from Vultr's DNS management service to clean up unused domains and maintain organized DNS infrastructure.
Instructions
Delete a DNS domain and all its records.
Args: domain: The domain name to delete
Returns: Status message confirming deletion
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| domain | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "domain": {
      "title": "Domain",
      "type": "string"
    }
  },
  "required": [
    "domain"
  ],
  "type": "object"
}