delete_record
Remove DNS records from Vultr's DNS management service to maintain accurate domain configurations and resolve outdated or incorrect entries.
Instructions
Delete a DNS record.
Args: domain: The domain name record_id: The record ID to delete
Returns: Status message confirming deletion
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| domain | Yes | ||
| record_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "domain": {
      "title": "Domain",
      "type": "string"
    },
    "record_id": {
      "title": "Record Id",
      "type": "string"
    }
  },
  "required": [
    "domain",
    "record_id"
  ],
  "type": "object"
}