place.wisp.v2.domain.delete

wisp.place

Documentation

Delete a claimed domain owned by the authenticated DID.

main procedure

Delete a claimed domain owned by the authenticated DID.

Input

Encodingapplication/json
domain string Required

Fully-qualified domain to delete (wisp subdomain or custom domain).

maxLength: 253 bytesminLength: 3 bytes

Output

Encodingapplication/json
deleted 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.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
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."
}

Lexicon Garden

@