social.coves.community.comment.delete

coves.social

Documentation

Delete a comment. Only the comment author can delete their own comments.

main procedure

Delete a comment. Only the comment author can delete their own comments.

Input

Encodingapplication/json
uri stringat-uri Required

AT-URI of the comment to delete

Output

Encodingapplication/json

Errors

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.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
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."
}

Lexicon Garden

@