Post Subscribers

featureOS List all Subscribers API

Introduction

This endpoint lists all the users subscribed to a specific post.

GET https://api.featureos.app/api/v3/subscribe_feature_requests

Headers

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

Query Parameters

Parameter Default Description
page1Used to paginate responses.
feature_request_id-The ID of the post returned in the list posts endpoint.

Sample response

{
  "success": true,
  "subscribers": [
    {
      "id": 1,
      "name": "swathy",
      "email": "[email protected]",
      "profile_picture": {
        "url": null
      }
    },
    {
      "id": 2,
      "name": "swathy",
      "email": "[email protected]",
      "profile_picture": {
        "url": null
      }
    }
  ]
}
Previous
Understanding Post Subscribers API