Pull the authority's repo in a space now, without waiting for a write notification. 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/jsonjobId
string
Required
No description available.
Errors
SpaceNotFound
Bard is not connected to that space. NotSpaceAuthority
Only the space's authority may force a pull. NoLiveCredential
Bard holds no live credential for the space; grant access first. SpacesDisabled
Space support is disabled on this deployment. 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 force a pull."
},
{
"name": "NoLiveCredential",
"description": "Bard holds no live credential for the space; grant access first."
},
{
"name": "SpacesDisabled",
"description": "Space support is disabled on this deployment."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"jobId"
],
"properties": {
"jobId": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"description": "Pull the authority's repo in a space now, without waiting for a write notification. Authority only."
}