Delete a comment. Only the comment author can delete their own comments.
Input
Encoding
application/jsonuri
stringat-uri
Required
AT-URI of the comment to delete
Output
Encoding
application/jsonErrors
CommentNotFound
Comment with the specified URI does not exist NotAuthorized
User is not authorized to delete this comment (not the author) 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 comment to delete"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "CommentNotFound",
"description": "Comment with the specified URI does not exist"
},
{
"name": "NotAuthorized",
"description": "User is not authorized to delete this comment (not the author)"
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Delete a comment. Only the comment author can delete their own comments."
}