Require WebNIC DNS Service Subscription enabled.
| Field | Type | Description |
|---|---|---|
| enabled | Boolean | Indicates whether DNSSEC is enabled for the domain zone |
| type | String | DNS record type that this signature covers |
| algorithm | String | Cryptographic algorithm used to create the signature |
| Action | URL |
|---|---|
| Enable Domain Zone Dnssec | {{baseUrl}}/dns/v2/zone/:zone/subscription/dnssec/enable |
| Disable Domain Zone Dnssec | {{baseUrl}}/dns/v2/zone/:zone/subscription/dnssec/disable |
| Get Domain Zone Dnssec Dns Key Record | {{baseUrl}}/dns/v2/zone/:zone/subscription/dnssec/dnskey |
| Get Domain Zone Dnssec Ds Record | {{baseUrl}}/dns/v2/zone/:zone/subscription/dnssec/ds |
curl --location --request GET 'https://oteapi.webnic.cc/dns/v2/zone/example.com/subscription/dnssec/info' \
--header 'Authorization: Bearer <token>'{
"code": "1000",
"message": "Command completed successfully.",
"data": {
"enabled": false,
"type": "dynamic",
"algorithm": "ECDSAP256SHA256"
}
}