Verify DNS for the publication's custom domain. Checks the CNAME (or A-record fallback for apex) and the TXT verification record, then requests an SSL certificate.
Parameters
Output
Encoding
application/jsonmessage
string
Required
No description available.
verified
boolean
Required
No description available.
Errors
BlogNotFound
NoDomainConfigured
VerificationFailed
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"errors": [
{
"name": "BlogNotFound"
},
{
"name": "NoDomainConfigured"
},
{
"name": "VerificationFailed"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"verified",
"message"
],
"properties": {
"message": {
"type": "string"
},
"verified": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"blog"
],
"properties": {
"blog": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the publication record. Authority MUST match the caller's DID."
}
}
},
"description": "Verify DNS for the publication's custom domain. Checks the CNAME (or A-record fallback for apex) and the TXT verification record, then requests an SSL certificate."
}