Stores a restricted post in the Skyblur AppView. Auth required.
Input
Encoding
application/jsonadditional
string
Optional
No description available.
maxLength: 100000 bytesmaxGraphemes: 10000 graphemeslistUri
stringat-uri
Optional
Selected Bluesky list AT-URI. Required by application validation when visibility is 'list'.
text
string
Required
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesuri
stringat-uri
Required
The URI must include the logged-in user's DID in the format at://did...
visibility
string
Required
No description available.
Output
Encoding
application/jsonmessage
string
Optional
No description available.
success
boolean
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": [
"text",
"uri",
"visibility"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "The URI must include the logged-in user's DID in the format at://did..."
},
"text": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"listUri": {
"type": "string",
"format": "at-uri",
"description": "Selected Bluesky list AT-URI. Required by application validation when visibility is 'list'."
},
"additional": {
"type": "string",
"maxLength": 100000,
"maxGraphemes": 10000
},
"visibility": {
"enum": [
"followers",
"following",
"mutual",
"list"
],
"type": "string"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"message": {
"type": "string"
},
"success": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Stores a restricted post in the Skyblur AppView. Auth required."
}