POST
/
console
/
v1
/
segments
/
{id}
/
conditional
curl --request POST \
  --url https://statsigapi.net/console/v1/segments/{id}/conditional \
  --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": {}
  }
]'
{
  "message": "Rules successfully updated"
}

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 · object[]
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
environments
string[] | null

The environments this rule is enabled for.

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

The return value of the rule.

Response

200
application/json
Rules Successfully Updated
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.