Release a domain: deactivate its site, stop authorizing the domain at the TLS permission endpoint, and revoke and delete its certificate. The content-addressed blobs survive — they may be shared — and are reclaimed by 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. 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."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"released"
],
"properties": {
"released": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Release a domain: deactivate its site, stop authorizing the domain at the TLS permission endpoint, and revoke and delete its certificate. The content-addressed blobs survive — they may be shared — and are reclaimed by garbage collection."
}