Delete stored restricted post content from Skyblur AppView. Auth required.
Input
Encoding
application/jsonuri
string
Required
AT URI of the post to delete. The URI must include the logged-in user's DID in the format at://did...
Output
Encoding
application/jsonsuccess
boolean
Optional
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": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"description": "AT URI of the post to delete. The URI must include the logged-in user's DID in the format at://did..."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Delete stored restricted post content from Skyblur AppView. Auth required."
}