dns_records
Retrieve DNS records for a specified domain, including record type, name, value, and TTL. Input the domain's UUID to access detailed DNS information.
Instructions
Get DNS records for a domain.
domain_id: Domain UUID (e.g: 'd1234567-89ab-cdef-0123-456789abcdef')
Each DNS record contains:
id (str): Unique record identifier
type (str): DNS record type (e.g. 'A', 'CNAME', 'MX', 'TXT')
name (str): DNS record name
value (str): DNS record value
ttl (int): Time to live in seconds
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain_id": {
"title": "Domain Id",
"type": "string"
}
},
"required": [
"domain_id"
],
"title": "dns_recordsArguments",
"type": "object"
}