curl --request POST \ --url https://api.yourdomain.com/api/chats/chat_123abc/votes \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "chatId": "chat_123abc", "messageId": "msg_456def", "isUpvoted": true }'
{ "success": true, "message": "Vote created successfully", "vote": { "id": "vote_789xyz", "chatId": "chat_123abc", "messageId": "msg_456def", "isUpvoted": true, "createdAt": "2024-01-17T10:30:00Z" } }
Creates a new vote or updates an existing vote on a message