Require DNS Service Subscription enabled.
| Field | Type | Description |
|---|---|---|
| keyTag | String | A short numeric value which can help quickly identify the referenced DNSKEY-record |
| algorithm | String | The algorithm of the referenced DNSKEY-record |
| digestType | String | Cryptographic hash algorithm used to create the Digest value |
| digest | String | A cryptographic hash value of the referenced DNSKEY-record |
| Action | URL |
|---|---|
| Get Domain Zone Dnssec Info | {{baseUrl}}/dns/v2/zone/:zone/subscription/dnssec/info |
| Get Domain Zone Dnssec Dns Key Record | {{baseUrl}}/dns/v2/zone/:zone/subscription/dnssec/dnskey |
curl --location --request GET 'https://oteapi.webnic.cc/dns/v2/zone/domaintesting123.com/subscription/dnssec/ds' \
--header 'Authorization: Bearer <token>'{
"code": "1000",
"message": "Command completed successfully.",
"data": {
"keyTag": "11882",
"algorithm": "13",
"digestType": "2",
"digest": "a1240a27b3d94d821ed3fe40644529655a690991c47b8aa4e7b19e17bccf7aaf"
}
}