Remove an Upvote for a Specific Poll Choice
This endpoint removes an upvote from a specific poll choice in a discussion.
info
If the discussion has no poll associated the response status code is 404.
info
This operation requires authentication
HTTP Request
POST /api/v2/discussion/{id}/poll/vote/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this discussion | 
| choice | body | integer | true | A unique integer value identifying the choice to be upvoted | 
Example Request
- JavaScript
- Bash
const inputBody = {
  "choice": "integer"
};
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/discussion/{id}/poll/vote/',
{
  method: 'POST',
  headers: headers,
  body: inputBody
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X POST /api/v2/discussion/{id}/poll/vote/ \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access_token}'
  --data-raw '{
    "choice": "integer"
  }'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 204 | No Content | Response status code | None |