POST
/
console
/
v1
/
dynamic_configs
/
{id}
/
rule
curl --request POST \
  --url https://statsigapi.net/console/v1/dynamic_configs/{id}/rule \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "name": "<string>",
  "passPercentage": 50,
  "conditions": [
    {
      "targetValue": [
        "<string>"
      ],
      "operator": "<string>",
      "field": "<string>",
      "customID": "<string>",
      "type": "app_version"
    }
  ],
  "environments": [
    "<string>"
  ],
  "id": "<string>",
  "baseID": "<string>",
  "returnValue": {},
  "returnValueJson5": "<string>"
}'
{
  "message": "<string>",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "idType": "userID",
    "description": "helpful summary of what this dynamic config does",
    "lastModifierID": "<string>",
    "lastModifiedTime": 123,
    "lastModifierEmail": "<string>",
    "lastModifierName": "<string>",
    "creatorID": "<string>",
    "createdTime": 123,
    "creatorName": "<string>",
    "creatorEmail": "<string>",
    "tags": [
      "a tag"
    ],
    "targetApps": "<string>",
    "holdoutIDs": [
      "<string>"
    ],
    "team": "<string>",
    "teamID": "<string>",
    "version": 123,
    "isEnabled": true,
    "rules": [
      {
        "name": "<string>",
        "passPercentage": 50,
        "conditions": [
          {
            "targetValue": [
              "<string>"
            ],
            "operator": "<string>",
            "field": "<string>",
            "customID": "<string>",
            "type": "app_version"
          }
        ],
        "environments": [
          "<string>"
        ],
        "id": "<string>",
        "baseID": "<string>",
        "returnValue": {},
        "returnValueJson5": "<string>"
      }
    ],
    "defaultValue": {},
    "defaultValueJson5": "<string>",
    "owner": {
      "ownerID": "user123",
      "ownerType": "USER",
      "ownerName": "John Doe",
      "ownerEmail": "owner123@test.com"
    },
    "schema": "<string>",
    "schemaJson5": "<string>",
    "precommitWebhook": {
      "url": "<string>",
      "internalStatusUrl": "<string>"
    }
  }
}

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

Body

application/json
name
string
required

The name of this rule.

passPercentage
number
required

Of the users that meet the conditions of this rule, what percent should return true.

Required range: 0 <= x <= 100Must be a multiple of 0.01
conditions
object[]
required

An array of Condition objects.

environments
string[] | null
id
string

The Statsig ID of this rule.

baseID
string

The base ID of this rule, i.e. without any added metadata. Will remain the exact same throughout

returnValue
object
returnValueJson5
string

Response

200 - application/json
Add Dynamic Config Rule Response
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.