Check a domain's DNS now instead of waiting for the poller. Limited to once every thirty seconds per domain.
Input
Encoding
application/jsondomain
string
Required
The registered hostname.
maxLength: 253 bytesOutput
Encoding
application/jsonchecks
array
Required
No description available.
status
refspace.highport.defs#domainStatus
Required
No description available.
Errors
DomainNotFound
No registration for that domain belongs to the caller. RateLimitExceeded
Only one verification every thirty seconds per domain. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"description": "The registered hostname."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "DomainNotFound",
"description": "No registration for that domain belongs to the caller."
},
{
"name": "RateLimitExceeded",
"description": "Only one verification every thirty seconds per domain."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"status",
"checks"
],
"properties": {
"checks": {
"type": "array",
"items": {
"ref": "space.highport.defs#verificationCheck",
"type": "ref"
}
},
"status": {
"ref": "space.highport.defs#domainStatus",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Check a domain's DNS now instead of waiting for the poller. Limited to once every thirty seconds per domain."
}