Forget a space: release the domains registered to it, purge under the ordinary grace, discard the credential and the key, and stop renewing. Authority only.
Input
Encoding
application/jsonspace
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsondisconnected
boolean
Required
No description available.
releasedDomains
array
Required
The hostnames released by the disconnect.
Errors
SpaceNotFound
Bard is not connected to that space. NotSpaceAuthority
Only the space's authority may disconnect it. 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": [
"space"
],
"properties": {
"space": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "SpaceNotFound",
"description": "Bard is not connected to that space."
},
{
"name": "NotSpaceAuthority",
"description": "Only the space's authority may disconnect it."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"disconnected",
"releasedDomains"
],
"properties": {
"disconnected": {
"type": "boolean"
},
"releasedDomains": {
"type": "array",
"items": {
"type": "string"
},
"description": "The hostnames released by the disconnect."
}
}
},
"encoding": "application/json"
},
"description": "Forget a space: release the domains registered to it, purge under the ordinary grace, discard the credential and the key, and stop renewing. Authority only."
}