Delete a claimed domain owned by the authenticated DID.
Input
Encoding
application/jsondomain
string
Required
Fully-qualified domain to delete (wisp subdomain or custom domain).
maxLength: 253 bytesminLength: 3 bytesOutput
Encoding
application/jsondeleted
boolean
Required
No description available.
domain
string
Required
No description available.
Errors
AuthenticationRequired
InvalidDomain
NotFound
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,
"minLength": 3,
"description": "Fully-qualified domain to delete (wisp subdomain or custom domain)."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "InvalidDomain"
},
{
"name": "NotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"deleted"
],
"properties": {
"domain": {
"type": "string"
},
"deleted": {
"type": "boolean",
"const": true
}
}
},
"encoding": "application/json"
},
"description": "Delete a claimed domain owned by the authenticated DID."
}