Comments

featureOS get single comment API

Introduction

This API endpoint allows you to retrieve information about a single comment from your organization.

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

Headers

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

Query Parameters

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

Sample response

{
  "id": 1,
  "comment_html": "<p>Sample Comment 1</p>\n",
  "comment": "Sample Comment 1",
  "parent_id": null,
  "feature_request": {
    "id": 168181,
    "url": "https://feedback.featureos.app/b/feedback/p/hello-world",
    "title": "Comment created via API"
  },
  "pinned": false,
  "internal": false,
  "approval_status": "approved",
  "created_at": "2023-04-24T09:53:34.000Z",
  "updated_at": "2023-04-24T09:53:34.000Z",
  "author": {
    "id": 1,
    "name": "swathy",
    "email": "[email protected]",
    "profile_picture": {
      "url": null
    },
    "url": "https://feedback.featureos.app/admin/users?userId=1",
    "role": "admin"
  }
}
Previous
List All Comments