Fetch the DNSSEC DS (Delegation Signer) records for a domain to publish to the parent registrar.
Parameters
Output
Encoding
application/jsondomain
string
Required
No description available.
ds
array
Required
No description available.
Errors
NotFound
The specified domain was not found or has no DNSSEC keys. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "The specified domain was not found or has no DNSSEC keys."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"ds"
],
"properties": {
"ds": {
"type": "array",
"items": {
"type": "object",
"properties": {
"digest": {
"type": "string"
},
"keyTag": {
"type": "integer"
},
"algorithm": {
"type": "integer"
},
"digestType": {
"type": "integer"
}
}
}
},
"domain": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"description": "The fully qualified domain name."
}
}
},
"description": "Fetch the DNSSEC DS (Delegation Signer) records for a domain to publish to the parent registrar."
}