Follow flags
Get followers of all flags in a given project and environment
Get followers of all flags in a given environment and project
get/api/v2/projects/{projectKey}/environments/{environmentKey}/followers
Path parameters
projectKeystring string required
The project key
The project key
environmentKeystring string required
The environment key
The environment key
Response
Flags and flag followers response
Example response
{
"_links": {
"self": {
"href": "/api/v2/projects/my-project/flags/my-flay/environments/my-environment/followers",
"type": "application/json"
}
},
"items": [
{
"flagKey": "example-flag-key",
"followers": [
{
"_links": {
"self": {
"href": "/api/v2/members/569f183514f4432160000007",
"type": "application/json"
}
},
"_id": "569f183514f4432160000007",
"firstName": "Ariel",
"lastName": "Flores",
"role": "admin",
"email": "ariel@acme.com"
}
]
}
]
}