Updating an existing CERT Record 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.
Understanding How The API Works »
REST Syntax
Click to view all REST Resources |
/REST/CERTRecord/ PUT — Updates an existing CERT record in the specified zone/node.
HTTP Action — PUT
URI — https://api.dynect.net/REST/CERTRecord/<zone>/<fqdn>/<record_id>/
|
Arguments — Click for More Info
- hash
rdata — Required. RData defining the record to add.
- string
format — Required. Numeric value for the certificate type.
- string
tag — Required. Numeric value for the public key certificate.
- string
algorithm — Required. Public key algorithm number used to generate the certificate.
- string
certificate — Required. The public key certificate.
- string
ttl — TTL for the record in seconds. Set to “0” to use zone default.
|
Response — Click for More Info
- string
fqdn — Fully qualified domain name of a node in the zone.
- hash
rdata — RData defining the record.
- string
format — Numeric value for the certificate type.
- string
tag — Numeric value for the public key certificate.
- string
algorithm — Public key algorithm number used to generate the certificate.
- string
certificate — The public key certificate.
- string
record_type — The RRType of the record.
- string
ttl — TTL for the record.
- string
zone — Name of the zone.
|
SOAP Syntax
Click to view all SOAP Commands |
UpdateCERTRecord — Updates an existing CERT record in the specified zone/node.
|
Arguments — Click for More Info
- string
fqdn — Required. Name of node where the update record is located.
- string
record_id — Required if there is more than 1 record of this type at the node.
- hash
rdata — Required. RData defining the new record data.
- string
format — Required. Numeric value for the certificate type.
- string
tag — Required. Numeric value for the public key certificate.
- string
algorithm — Required. Public key algorithm number used to generate the certificate.
- string
certificate — Required. The public key certificate.
- string
token — Required. The session identifier.
- string
ttl — TTL for the record in seconds. Set to “0” to use zone default.
- string
zone — Required. Name of zone where the update record is located.
|
Response — 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
format — Numeric value for the certificate type.
- string
tag — Numeric value for the public key certificate.
- string
algorithm — Public key algorithm number used to generate the certificate.
- string
certificate — The public key certificate.
- 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 — Click for More Info
{
'fqdn' => 'www.example.com',
'record_id' => '32',
'rdata' => {
'format' => 1,
'tag' => 44121,
'algorithm' => 3,
'certificate' => 'AQPWA4BRyjB3eqYNy/oykeGcSXjl+HQK9CciAxJfMcS1vEuwz9c+QG7sEJnQuH5B9i5o/ja+DVitY3jpXNa12mEn',
},
'token' => 'asdlkfjasl23j4879afa',
'ttl' => '3600',
'zone' => 'example.com',
}
|
DNS API Knowledge Base