Upvote for a Specific Discussion
This endpoint allows to vote (with a relative reaction) a specific discussion.
info
This operation requires authentication
HTTP Request
POST /api/v2/discussion/{id}/vote/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this discussion. | 
| reaction | query | string | false | A unique integer value identifying the reaction (default is 1) | 
info
If a different reaction id than the one made previously by the user is passed, the reaction is updated to the new one.
Example Request
- JavaScript
- Bash
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json',
  'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/discussion/{id}/vote/?reaction=1',
{
  method: 'POST',
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X POST /api/v2/discussion/{id}/vote/?reaction=1 \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access_token}'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 204 | No Content | Response status code | None |