v1

latestOpenAPI 3.0.1Gremlin License2026-08-06397451577.0 KB
failure-flags.experiments

Get all active Experiments for a team.

Requires the privilege EXPERIMENTS_READ

get/failure-flags/experiments/active

Query parameters

pageSizeinteger

This value determines how many results will be returned per call.

pageTokenstring

Token corresponding to the last page of team summaries retrieved. Pass the pageToken to get the next page of team summaries

teamIdstring required

Required when using company session token.

Response

Get all active Experiments for a team

pageNumberinteger
pageSizeinteger

The size of the page requested. If none was supplied this is a default value (depending on the endpoint). If the length of items is less than this number that means there are no more pages to request.

NOTE: if the length is equal there may or may not be additional pages to request, it is unknowable until they are requested

pageTokenstring

Supply this token on successive requests to retrieve the next page if there is one

Example response

{
  "items": [
    {
      "app": {
        "labels": {
          "foo": [
            "bar",
            "baz"
          ]
        },
        "runtimeLabels": {
          "zones": [
            "us-west-1a",
            "us-west-1b"
          ]
        }
      },
      "flag": {
        "labels": {
          "foo": [
            "bar",
            "baz"
          ]
        },
        "runtimeLabels": {
          "zones": [
            "us-west-1a",
            "us-west-1b"
          ]
        }
      },
      "duration": "30m"
    }
  ]
}