{
"voteForOptionIndex": "number",
"debateReaction": "support"
}curl --location --request POST 'https://api.chattabox.com/v1/post//participate' \
--header 'Authorization: Bearer some-random-token' \
--header 'Content-Type: application/json' \
--data-raw '{
"voteForOptionIndex": "number",
"debateReaction": "support"
}'{
"success": true,
"statusCode": 200,
"data": {
"post": {
"id": "cm1z66sxy0000u4v311cjcpzo",
"type": "poll",
"pollOptions": [
{
"text": "Some option text",
"totalVoters": 2
},
{
"text": "Some option text",
"totalVoters": 1,
"userVoted": true
}
],
"totalParticipants": 3,
"totalOpposers": 0,
"totalSupporters": 0,
"userParticipated": true,
"userOpposed": false,
"userSupported": false
}
}
}