Get the current SSL and hostname status for a publication's custom domain.
Parameters
Output
Encoding
application/jsonsslStatus
string
Optional
SSL provisioning state (null when no domain configured).
status
string
Optional
Custom hostname status (null when no domain configured).
Errors
BlogNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "BlogNotFound"
}
],
"output": {
"schema": {
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "Custom hostname status (null when no domain configured)."
},
"sslStatus": {
"type": "string",
"description": "SSL provisioning state (null when no domain configured)."
}
}
},
"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": "Get the current SSL and hostname status for a publication's custom domain."
}