Force an immediate verification pass over a domain's DNS rather than waiting for the poller. Rate-limited to one call per 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
reflol.dids.defs#domainStatus
Required
No description available.
Errors
DomainNotFound
No registration for that domain belongs to the caller. RateLimitExceeded
One verification per 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": "One verification per thirty seconds per domain."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"status",
"checks"
],
"properties": {
"checks": {
"type": "array",
"items": {
"ref": "lol.dids.defs#verificationCheck",
"type": "ref"
}
},
"status": {
"ref": "lol.dids.defs#domainStatus",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Force an immediate verification pass over a domain's DNS rather than waiting for the poller. Rate-limited to one call per thirty seconds per domain."
}