GET
/
console
/
v1
/
dynamic_configs
/
{id}
/
rules
curl --request GET \
  --url https://statsigapi.net/console/v1/dynamic_configs/{id}/rules \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Dynamic Config rules read successfully.",
  "data": [
    {
      "rules": [
        {
          "id": "5pjzfmF8KLFsh81kBPyxvR",
          "baseID": "5pjzfmF8KLFsh81kBPyxvR",
          "name": "rule name",
          "passPercentage": 1,
          "conditions": [
            {
              "type": "browser_name",
              "targetValue": [],
              "operator": "any"
            }
          ],
          "environments": null
        },
        {
          "id": "6jQEnu1fCnXqjXhm1qGEnt",
          "baseID": "6jQEnu1fCnXqjXhm1qGEnt",
          "name": "Other2",
          "passPercentage": 80,
          "conditions": [],
          "environments": null
        },
        {
          "id": "4DonExIcOjSV8kG3WSQ5Zm",
          "baseID": "4DonExIcOjSV8kG3WSQ5Zm",
          "name": "Austin's fav rule",
          "passPercentage": 8,
          "conditions": [],
          "environments": null
        }
      ]
    }
  ],
  "pagination": {
    "itemsPerPage": 20000,
    "pageNumber": 1,
    "totalItems": 1,
    "nextPage": null,
    "previousPage": null,
    "all": ""
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Path Parameters

id
string
required

id

Response

200 - application/json
Get Dynamic Config Rules Response
message
string
required

A simple string explaining the result of the operation.

data
object[]
required

Array of results returned by pagination limit.

pagination
object
required

Pagination metadata for checking if there is next page for example.