Deleting one or all 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/ DELETE — Delete one or all existing KEY Records on the zone/node indicated.
HTTP Action — DELETE
URIs:
Delete one KEY record — https://api.dynect.net/REST/KEYRecord/<zone>/<fqdn>/<record_id>/
Delete KEY records — https://api.dynect.net/REST/KEYRecord/<zone>/<fqdn>/ |
Arguments:
No Arguments. |
Response:
Not Applicable. |
SOAP Syntax
Click to view all SOAP Commands |
DeleteOneKEYRecord — Delete one existing KEY Record on the zone/node indicated.
DeleteKeyRecords — Delete all existing KEY Records on the zone/node indicated. |
Arguments:
DeleteOneKEYRecord — 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 — 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 the flags in KEY records.
- 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.
DeleteKEYRecords — 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:
Not Applicable. |
Example Request (DeleteOneKEYRecord) — Click for More Info
{
'fqdn' => 'www.example.com',
'record_id' => '32',
'token' => 'asdlkfjasl23j4879afa',
'zone' => 'example.com',
}
|
Example Request (DeleteKEYRecords) — Click for More Info
{
'fqdn' => 'www.example.com',
'token' => 'asdlkfjasl23j4879afa',
'zone' => 'example.com',
}
|
<< DNS API Knowledge Base