DELETE
/posts/{postId}/vote/proxyRemove a vote
Remove any vote (proxy, integration, or direct) for a user. Requires team role.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
postIdrequired | path | string | Post ID |
Request body
| Field | Type | Description |
|---|---|---|
voterPrincipalIdrequired | string | Principal ID of the voter |
Errors
204Vote removed400Validation error401Unauthorized404Post not foundExample 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"
}'