get_record
Retrieve detailed information about a specific DNS record using domain name and record ID to manage DNS configurations.
Instructions
Get details for a specific DNS record.
Args: domain: The domain name record_id: The record ID to get details for
Returns: DNS record details
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"
}