Roadmap

featureOS List All Entries

Introduction

The featureOS List All Entries API allows you to retrieve information about your list entries. You can also retrieve list entries' associated data.


GET https://api.featureos.app/api/v3/kanban/:column_id/entries

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.

Query Parameters

Parameter Default Description
column_id-The ID of the changelog returned in the list changelogs endpoint.
page1Used to paginate responses.

Sample response

{
  "success": true,
  "column": {
    "id": 1,
    "name": "stay",
    "position": 1
  },
  "entries": [
    {
      "id": 1,
      "title": "Customizable Roadmap",
      "tagline": "Like a Kanban, but not.",
      "description": "<p>You can add whatever you want in here! And tag posts!</p>",
      "position": 1,
      "header_image": {
        "url": "https://..."
      },
      "feature_requests": [
        {
          "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",
          "submitter": {
            "name": "Swathy",
            "email": "[email protected]"
          },
          "bucket": {
            "id": 14,
            "name": "API"
          },
          "downvotes_count": 0,
          "comments_count": 0,
          "created_at": "2021-10-20T13:58:49.000Z",
          "updated_at": "2021-10-20T13:58:49.000Z"
        }
      ]
    }
  ]
}
Previous
List Kanban Columns