Votes
Upvotes on feedback or roadmap posts. Toggle votes on behalf of a user, or list every voter on a post.
A vote is an upvote one user gave to one post. ProductBridge votes are toggle-style — calling the toggle endpoint twice for the same (user_id, post_id) pair adds and then removes the vote.
The API lets you toggle a vote and list all voters on a post. The "voters list" endpoint is paginated; toggle is single-action.
The vote model
ProductBridge does not return a standalone vote object via the public API — votes are exposed indirectly through:
- Toggle: returns whether the user is now voted (
true) or unvoted (false) after the operation. - Voters list: returns the list of users who currently have an active vote on a post.
The public API does not expose vote counts directly — post objects don't include a count field. If you need a count, paginate List voters for the post and count the results client-side.
What you can do
Was this page helpful?