Introduction
This endpoint lists all child posts that have been merged into a parent post.
GET https://api.featureos.app/api/v3/feature_requests/:feature_request_id/merge_postsHeaders
| Parameter | Default | Description | |
|---|---|---|---|
| API-KEY | - | Generate from organization settings on the admin dashboard. | |
| Authorization | - | Generate a unique JWT token that is specific to a user. Only organization members can access this endpoint. | |
Sample response
{ "success": true, "feature_requests": [ { "id": 4231, "slug": "duplicate-feature-request", "title": "Duplicate feature request", "preview": "This is a duplicate post", "description": "This is a duplicate post\n\n", "description_html": "<p>This is a duplicate post</p>", "status": "Submitted", "url": "https://feedback.featureos.app/b/api/p/duplicate-feature-request", "approval_status": "approved", "submitter": { "name": "John", }, "bucket": { "id": 14, "name": "API" }, "votes_count": 0, "downvotes_count": 0, "comments_count": 0, "created_at": "2021-10-21T10:58:30.000Z", "updated_at": "2021-10-21T10:58:31.000Z", "tags": [], "custom_status": { "title": "Submitted", "color": "#000000", "status": "submitted", "percentage": null, "icon": null }, "merged": true, "merged_posts_count": 0, "child_posts": [] } ]}