GET
/
console
/
v1
/
dynamic_configs
curl --request GET \
  --url https://statsigapi.net/console/v1/dynamic_configs \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Dynamic Configs listed successfully.",
  "data": [
    {
      "id": "example_config",
      "name": "Example Config",
      "description": "An example dynamic configuration",
      "idType": "userID",
      "lastModifierID": "abc123",
      "lastModifiedTime": 1600000000000,
      "lastModifierName": "Jane Doe",
      "lastModifierEmail": "jane@example.com",
      "creatorID": "def456",
      "createdTime": 1500000000000,
      "creatorName": "John Smith",
      "creatorEmail": "john@example.com",
      "targetApps": [
        "myapp"
      ],
      "holdoutIDs": [],
      "tags": [
        "example_tag"
      ],
      "team": "Product",
      "isEnabled": true,
      "rules": [],
      "defaultValue": {},
      "defaultValueJson5": "{}",
      "schema": "{\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"properties\":{}}",
      "schemaJson5": "{\n  \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\n  \"properties\": {}\n}",
      "version": 1
    }
  ]
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

creatorName
string | null

Name of the creator.

creatorID
string | null

ID of the user who created the entity.

tags

Filter by tags

limit
integer

Results per page

Example:

10

page
integer

Page number

Example:

1

Response

200
application/json
List Dynamic Configs Success
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.