curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-votes.delete' \ --header 'Authorization: Bearer SUBSCRIBER_JWT_TOKEN' \ --header 'Content-Type: application/json' \ --data-raw '{ "feedbackId": "feedback-uuid" }'
{ "success": true, "totalVotes": 42 }
Remove your vote from a feedback item. Requires subscriber authentication.
Authorization: Bearer SUBSCRIBER_JWT_TOKEN
Was this page helpful?