Skip to main content

Get List of Poll Votes for a Specific Post

This endpoint retrieves all poll votes for a specific post. The choice parameter is used to filter the votes by a given poll choice of the poll. If the post has no poll associated the response status code is 404.

info

This operation requires authentication only if content_availability community option is false

HTTP Request

GET /api/v2/post/{id}/poll/vote/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this post
limitqueryintegerfalseNumber of results to return per page
offsetqueryintegerfalseThe initial index from which to return the results
choicequeryintegerfalseThe choice id of the poll. If is specified the endpoint retrieves the votes of only that choice

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/post/{id}/poll/vote/',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
» countintegertruenoneTotal results count
» nextstring¦nullfalsenoneNext page url
» previousstring¦nullfalsenonePrevious page url
» resultslist(PollVote)truenoneList of results

Example responses

{
"count": "integer",
"next": "string(uri)",
"previous": "string(uri)",
"results": [
{
"id": "integer",
"choice": "string",
"user": {
"id": "integer",
"username": "string",
"real_name": "string",
"avatar": "string",
"ext_id": "integer",
"followings_counter": "integer",
"followers_counter": "integer",
"posts_counter": "integer",
"discussions_counter": "integer",
"polls_counter": "integer",
"connection_status": "string",
"categories_counter": "integer",
"date_joined": "string",
"bio": "string",
"location": "string",
"location_lat_lng": "string",
"position_lat_lng": "string",
"date_of_birth": "string",
"description": "string",
"gender": "string",
"website": "string",
"cover": "string",
"tags": [{Tag}],
"reputation": "integer",
"community_badge": "boolean",
"reg_approved": "boolean",
"deleted" : "boolean",
"company_name": "string",
"company_role": "string"
},
}
]
}