Suspend or unsuspend syncing for a space: no pulls, no grants accepted, and its domains keep serving what they serve.
Input
Encoding
application/jsonspace
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
state
string
Required
No description available.
Output
Encoding
application/jsonspace
reflol.dids.defs#spaceView
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": [
"space",
"state"
],
"properties": {
"space": {
"type": "string",
"format": "at-uri"
},
"state": {
"type": "string",
"knownValues": [
"suspended",
"active"
]
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"space"
],
"properties": {
"space": {
"ref": "lol.dids.defs#spaceView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Suspend or unsuspend syncing for a space: no pulls, no grants accepted, and its domains keep serving what they serve."
}