Skip to content
DELETE/posts/{postId}/vote/proxy

Remove a vote

Remove any vote (proxy, integration, or direct) for a user. Requires team role.

Parameters

NameInTypeDescription
postIdrequiredpathstringPost ID

Request body

FieldTypeDescription
voterPrincipalIdrequiredstringPrincipal ID of the voter

Errors

204Vote removed
400Validation error
401Unauthorized
404Post not found

Example request

curl \
  -X DELETE \
  "https://feedback.quackback.io/api/v1/posts/:postId/vote/proxy" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "voterPrincipalId": "post_01h455vb4pex5vsknk084sn02q"
}'