curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-votes.create' \ --header 'Authorization: Bearer SUBSCRIBER_JWT_TOKEN' \ --header 'Content-Type: application/json' \ --data-raw '{ "feedbackId": "feedback-uuid" }'
{ "data": { "id": "vote-uuid", "feedbackId": "feedback-uuid", "subscriberId": "subscriber-uuid", "createdAt": "2024-01-15T10:30:00Z" }, "totalVotes": 43 }
Cast a vote on a feedback item. Requires subscriber authentication. One vote per subscriber.
Authorization: Bearer SUBSCRIBER_JWT_TOKEN
Show Vote Properties
Was this page helpful?