Everything the caller needs during onboarding for one domain: its registration state, the DNS records to publish, the last verification result, and the certificate state. The single endpoint an authoring tool polls.
Parameters
Output
application/jsondomain
reflol.dids.defs#domainView
Required
No description available.
records
array
Required
The DNS records the registration asks for, exactly as register returned them.
tls
reflol.dids.defs#tlsView
Required
No description available.
verification
reflol.dids.defs#verificationView
Required
No description available.
Errors
DomainNotFound
No registration for that domain belongs to the caller. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "DomainNotFound",
"description": "No registration for that domain belongs to the caller."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"records",
"verification",
"tls"
],
"properties": {
"tls": {
"ref": "lol.dids.defs#tlsView",
"type": "ref"
},
"domain": {
"ref": "lol.dids.defs#domainView",
"type": "ref"
},
"records": {
"type": "array",
"items": {
"ref": "lol.dids.defs#dnsInstruction",
"type": "ref"
},
"description": "The DNS records the registration asks for, exactly as register returned them."
},
"verification": {
"ref": "lol.dids.defs#verificationView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"description": "The registered hostname."
}
}
},
"description": "Everything the caller needs during onboarding for one domain: its registration state, the DNS records to publish, the last verification result, and the certificate state. The single endpoint an authoring tool polls."
}