POST
/posts/{postId}/vote/proxyAdd a proxy vote
Add a vote on behalf of another user (insert-only, never toggles). 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 |
Response
Proxy vote added
| Field | Type | Description |
|---|---|---|
votedrequired | boolean | Whether the post is now voted |
voteCountrequired | number | Current vote count |
Errors
400Validation error401Unauthorized404Post not foundExample request
curl \
-X POST \
"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"
}'