v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Follow flags

Get followers of a flag in a project and environment

Get a list of members following a flag in a project and environment

get/api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/followers

Path parameters

projectKeystring string required

The project key

The project key

featureFlagKeystring string required

The feature flag key

The feature flag key

environmentKeystring string required

The environment key

The environment key

Response

Flag followers response

_linksobject required

The location and content type of related resources

Example response

{
  "_links": {
    "self": {
      "href": "/api/v2/projects/my-project/flags/my-flay/environments/my-environment/followers",
      "type": "application/json"
    }
  },
  "items": [
    {
      "_links": {
        "self": {
          "href": "/api/v2/members/569f183514f4432160000007",
          "type": "application/json"
        }
      },
      "_id": "569f183514f4432160000007",
      "firstName": "Ariel",
      "lastName": "Flores",
      "role": "admin",
      "email": "ariel@acme.com"
    }
  ]
}