Votes
featureOS list all upvoters API
Introduction
This endpoint lists all upvoters of the specific post.
GET https://api.featureos.app/api/v3/upvoters
Headers
| Parameter | Default | Description |
|---|---|---|
| API-KEY | - | Generate from organization settings on the admin dashboard. |
Query Parameters
| Parameter | Default | Description |
|---|---|---|
| page | 1 | Used to paginate responses. |
| feature_request_id | - | The ID of the post returned in the list posts endpoint. |
Sample response
{
"success": true,
"votes": [
{
"id": 2652,
"kind": "upvote",
"source": "featureos",
"created_at": "2023-09-06T11:37:39.000Z",
"feature_request": {
"id": 1211,
"bucket_id": 307,
"title": "sample post",
"status": "Under Review",
"approved": true,
"url": "https://feedback.featureos.app/b/feedback/p/sample-post"
},
"user": {
"name": "Swathy",
"email": "swathy@featureos.app"
}
}
]
}