Delete a post
Input
Encoding
application/jsonuri
stringat-uri
Required
AT-URI of the post to delete
Output
Encoding
application/jsonErrors
PostNotFound
Post not found NotAuthorized
User is not authorized to delete this post 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",
"format": "at-uri",
"description": "AT-URI of the post to delete"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "PostNotFound",
"description": "Post not found"
},
{
"name": "NotAuthorized",
"description": "User is not authorized to delete this post"
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Delete a post"
}