Delete a vote on a post or comment
Input
Encoding
application/jsonsubject
refcom.atproto.repo.strongRef
Required
Strong reference to the post or comment to remove the vote from
Output
Encoding
application/jsonErrors
VoteNotFound
No vote found for this subject NotAuthorized
User is not authorized to delete this vote 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": [
"subject"
],
"properties": {
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the post or comment to remove the vote from"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "VoteNotFound",
"description": "No vote found for this subject"
},
{
"name": "NotAuthorized",
"description": "User is not authorized to delete this vote"
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Delete a vote on a post or comment"
}