update_dns_record
Update a DNS record by ID with optional field changes. Idempotent—same update applied twice is a no-op.
Instructions
Update an existing DNS record by its numeric record_id (obtained from list_dns_records). All fields except record_id and domain are optional — pass only the ones you want to change. Idempotent: applying the same update twice is a no-op.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain the record belongs to, e.g. `example.com` | |
| record_id | Yes | Numeric record ID (as a string). Get this from `list_dns_records`. | |
| type | No | New record type (rarely changed). | |
| content | No | New record value. | |
| name | No | New subdomain prefix (empty string = apex). | |
| ttl | No | New TTL in seconds. | |
| prio | No | New priority (MX/SRV only). |