Forget a space: release its domains, purge them after the usual grace period, discard the credential and 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 that were released.
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 that were released."
}
}
},
"encoding": "application/json"
},
"description": "Forget a space: release its domains, purge them after the usual grace period, discard the credential and key, and stop renewing. Authority only."
}