Get a list of all features in the given project. By default, each feature includes configurations for each environment. You can filter environments with the env query parameter. For example, settingDocumentation Index
Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
Use this file to discover all available pages before exploring further.
env=production restricts the returned configurations to just your production environment. You can also filter feature flags by tag with the tag query parameter.
We support the following fields for filters:
queryis a string that matches against the flags’ keys and names. It is not case sensitive.archivedis a boolean to filter the list to archived flags. When this is absent, only unarchived flags are returned.typeis a string allowing filtering totemporaryorpermanentflags.statusis a string allowing filtering tonew,inactive,active, orlaunchedflags in the specified environment. This filter also requires afilterEnvfield to be set to a valid environment. For example:filter=status:active,filterEnv:production.tagsis a + separated list of tags. It filters the list to members who have all of the tags in the list.hasExperimentis a boolean with values of true or false and returns any flags that have an attached metric.hasDataExportis a boolean with values of true or false and returns any flags that are exporting data in the specified environment. This includes flags that are exporting data from Experimentation. This filter also requires that you set afilterEnvfield to a valid environment key. For example:filter=hasDataExport:true,filterEnv:productionevaluatedis an object that contains a key ofafterand a value in Unix time in milliseconds. This returns all flags that have been evaluated since the time you specify in the environment provided. This filter also requires you to set afilterEnvfield to a valid environment. For example:filter=evaluated:{"after": 1590768455282},filterEnv:production.filterEnvis a string with the key of a valid environment. You can use the filterEnv field for filters that are environment-specific. If there are multiple environment-specific filters, you should only declare this parameter once. For example:filter=evaluated:{"after": 1590768455282},filterEnv:production,status:active.
query:abc,tags:foo+bar. This matches flags with the string abc in their key or name, ignoring case, which also have the tags foo and bar.
By default, this returns all flags. You can page through the list with the limit parameter and by following the first, prev, next, and last links in the returned _links field. These links will not be present if the pages they refer to don’t exist. For example, the first and prev links will be missing from the response on the first page.
Parameters
| Parameter | Description |
|---|---|
| Archived | A boolean to filter the list to archived flags. When this is absent, only unarchived flags will be returned. |
| Compare | A boolean to filter results by only flags that have differences between environments. |
| Env | Filter configurations by environment. |
| Filter | A comma-separated list of filters. Each filter is of the form field:value. |
| Limit | The number of feature flags to return. Defaults to -1, which returns all flags. |
| Offset | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query limit. |
| Project Key | The project key. |
| Sort | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. |
| Summary | By default in API version >= 1, flags will not include their list of prerequisites, targets or rules. Set summary=0 to include these fields for each flag returned. |
| Tag | Filter feature flags by tag. |