Stop a base handing out names: remove its probe and clear its delegation state. Refused while any reservation remains; release each one with releaseReservation. A certificate grant on the base is left in place.
Input
application/jsondomain
string
Required
The base: a domain registered to the caller.
maxLength: 253 bytesOutput
application/jsondisabled
boolean
Required
No description available.
domain
string
Required
No description available.
Errors
NotBaseOwner
No verified or active registration of that domain belongs to the caller. DelegationHasReservations
Names are still reserved under the base. Release each one with releaseReservation first. 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 base: a domain registered to the caller."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotBaseOwner",
"description": "No verified or active registration of that domain belongs to the caller."
},
{
"name": "DelegationHasReservations",
"description": "Names are still reserved under the base. Release each one with releaseReservation first."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"disabled"
],
"properties": {
"domain": {
"type": "string"
},
"disabled": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Stop a base handing out names: remove its probe and clear its delegation state. Refused while any reservation remains; release each one with releaseReservation. A certificate grant on the base is left in place."
}