Release a domain: deactivate its site and stop authorizing it for TLS. Certificates already issued for it stay valid until they expire. If the domain is a base with a wildcard grant, the grant ends and the wildcard is revoked and deleted; no account can take the domain until that finishes. Stored blobs are left for garbage collection.
Input
application/jsondomain
string
Required
The registered hostname.
maxLength: 253 bytesOutput
application/jsonreleased
boolean
Required
No description available.
Errors
DomainNotFound
No registration for that domain belongs to the caller. DomainIsDelegationProbe
The domain is a delegation base's probe. Use disableDelegation to remove it. 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": "DomainIsDelegationProbe",
"description": "The domain is a delegation base's probe. Use disableDelegation to remove it."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"released"
],
"properties": {
"released": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Release a domain: deactivate its site and stop authorizing it for TLS. Certificates already issued for it stay valid until they expire. If the domain is a base with a wildcard grant, the grant ends and the wildcard is revoked and deleted; no account can take the domain until that finishes. Stored blobs are left for garbage collection."
}