Skip to content

Get a single post

Introduction

The FeatureOS get single post API allows you to retrieve information about a single post you desire to get from your organization.

GET https://api.featureos.app/api/v3/feature_requests/:id

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.
ALLOW-PRIVATEfalseSet to true if filtering out a private board’s posts.

Query Parameters

Parameter Default Description
id1The ID of the post you want to retrieve.

Sample response

{
"id": 4229,
"slug": "chrissy-smith",
"title": "Chrissy Smith",
"preview": "Chrissy Smith",
"description": "This is a description for dummies. \n\n",
"description_html": "<p>This is a description for dummies.</p>",
"status": "Submitted",
"url": "https://feedback.featureos.app/b/api/p/chrissy-smith",
"approval_status": "approved",
"submitter": {
"name": "Swathy",
"email": "[email protected]"
},
"bucket": {
"id": 14,
"name": "API"
},
"votes_count": 0,
"downvotes_count": 0,
"comments_count": 0,
"created_at": "2021-10-20T13:58:49.000Z",
"updated_at": "2021-10-20T13:58:49.000Z"
}