Suspend, unsuspend, or force-release a domain.
Input
Encoding
application/jsondomain
string
Required
The hostname.
maxLength: 253 bytesreason
string
Optional
Recorded on the domain's event log.
state
string
Required
No description available.
Output
Encoding
application/jsondomain
reflol.dids.defs#domainView
Required
No description available.
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",
"state"
],
"properties": {
"state": {
"type": "string",
"knownValues": [
"suspended",
"active",
"released"
]
},
"domain": {
"type": "string",
"maxLength": 253,
"description": "The hostname."
},
"reason": {
"type": "string",
"description": "Recorded on the domain's event log."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"domain"
],
"properties": {
"domain": {
"ref": "lol.dids.defs#domainView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Suspend, unsuspend, or force-release a domain."
}