Stores a restricted post in the Skyblur AppView. Auth required.
Input
Encoding
application/jsonadditional
string
Optional
No description available.
maxLength: 100000 bytesmaxGraphemes: 10000 graphemestext
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
},
"additional": {
"type": "string",
"maxLength": 100000,
"maxGraphemes": 10000
},
"visibility": {
"enum": [
"followers",
"following",
"mutual"
],
"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."
}