Retrieving existing KEY Records using the API requires specific syntax depending on whether you are using REST or SOAP. Use this table to find the syntax for your command.
See RFC 2535 for more information about KEY records.
Understanding How The API Works »
REST Syntax
Click to view all REST Resources |
/REST/KEYRecord/ GET — Retrieve one or all existing KEY Records on the zone/node indicated.
HTTP Action — GET
URIs:
Get one KEY Record — https://api.dynect.net/REST/KEYRecord/<zone>/<fqdn>/<record_id>/
Get KEY Records — https://api.dynect.net/REST/KEYRecord/<zone>/<fqdn>/ |
Arguments:
No Arguments. |
Response:
One KEY Record — Click for More Info
- string
fqdn — Fully qualified domain name of a node in the zone.
- hash
rdata — RData defining the record to update.
- string
algorithm — Numeric identifier for algorithm used.
- string
flags — See RFC 2535 for information about KEY record flags.
- string
protocol — Numeric identifier of the protocol for this KEY record.
- string
public_key — The public key for this record.
- string
record_type — The RRType of the record.
- string
ttl — TTL for the record.
- string
zone — Name of the zone.
All KEY Records: array — Individual records. |
SOAP Syntax
Click to view all SOAP Commands |
GetOneKEYRecord — Retrieve one existing KEY Record on the zone/node indicated.
GetKEYRecords — Retrieve all existing KEY Records on the zone/node indicated. |
Arguments:
GetOneKEYRecord — Click for More Info
- string
fqdn — Required. Name of node where the record will be updating.
- string
record_id — ID of the record to find. Optional.
- hash
rdata — Required. RData defining the record to update.
- string
algorithm — Required. Numeric identifier for algorithm used.
1 = RSA/MD5 (recommended)
2 = Diffie-Hellman (Optional, key only)
3 = DSA (mandatory)
- string
flags — Required. See RFC 2535 for information about KEY record flags.
- string
protocol — Required. Numeric identifier of the protocol for this KEY record.
1 = TLS
2 = Email
3 = DNSSEC
4 = IPsec
- string
public_key — Required. The public key for this record.
- string
token — Required. The session identifier.
- string
zone — Required. Name of zone where the record will be updated.
GetKEYRecords — Click for More Info
string fqdn — Required. Name of node where the record will be updating.
string token — Required. The session identifier.
string zone — Required. Name of zone where the record will be updated.
|
Response:
GetOneKEYRecord — Click for More Info
- hash
data
- string
fqdn — Fully qualified domain name of a node in the zone.
- hash
rdata — RData defining the record.
- string
algorithm — Numeric identifier for algorithm used.
- string
flags — See RFC 2535 for information about KEY record flags.
- string
protocol — Numeric identifier of the protocol for this KEY record.
- string
public_key — The public key for this record.
- string
record_id — A numeric identifier for the record.
- string
record_type — The RRType of the record.
- string
ttl — TTL for the record.
- string
zone — Name of the zone.
GetKEYRecords — Click for More Info
- array
data
- string
fqdn — Fully qualified domain name of a node in the zone.
- hash
rdata — RData defining the record.
- string
algorithm — Numeric identifier for algorithm used.
- string
flags — See RFC 2535 for information about KEY record flags.
- string
protocol — Numeric identifier of the protocol for this KEY record.
- string
public_key — The public key for this record.
- string
record_id — A numeric identifier for the record.
- string
record_type — The RRType of the record.
- string
ttl — TTL for the record.
- string
zone — Name of the zone.
|
Example Request (GetOneKEYRecord) — Click for More Info
{
'fqdn' => 'www.example.com',
'rdata' => {
'flags' => '257',
'algorithm' => '5',
'protocol' => '3',
'public_key' => 'AQPWA4BRyjB3eqYNy/oykeGcSXjl+HQK9CciAxJfMcS1vEuwz9c+QG7sEJnQuH5B9i5o/ja+DVitY3jpXNa12mEn',
},
'token' => 'asdlkfjasl23j4879afa',
'zone' => 'example.com',
}
or
{
'fqdn' => 'www.example.com',
'record_id' => '32',
'token' => 'asdlkfjasl23j4879afa',
'zone' => 'example.com',
}
|
Example Request (GetKEYRecords) — Click for More Info
{
'fqdn' => 'www.example.com',
'token' => 'asdlkfjasl23j4879afa',
'zone' => 'example.com',
}
|
<< DNS API Knowledge Base