Skip to main content
POST

Authentication

Requires subscriber JWT token from login/identify.

Request Body

string
required
The feedback ID to vote on

Response

object
Created vote object
number
Updated total vote count for this feedback

Behavior

  • One Vote Per User: Each subscriber can only vote once per feedback
  • Duplicate Prevention: Returns existing vote if already voted
  • Vote Count Update: Feedback vote count incremented automatically
  • Notifications: May trigger notifications to feedback creator

Use Cases

  • User Engagement: Allow users to upvote feedback they support
  • Prioritization: Use votes to gauge feature demand
  • Popular Feedback: Sort feedback by vote count

Notes

  • Requires valid subscriber JWT token
  • Returns 409 if user has already voted (use delete to unvote first)
  • Vote count updates immediately
  • Triggers webhook events if configured