Skip to main content
POST
/
console
/
v1
/
param_stores
/
{name}
Update Param Store
curl --request POST \
  --url https://statsigapi.net/console/v1/param_stores/{name} \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "description": "<string>",
  "parameters": [
    {
      "ref_type": "static",
      "name": "<string>",
      "param_type": "boolean",
      "value": true
    }
  ]
}'
{
  "message": "Param Store read successfully.",
  "data": {
    "id": "6O13wytnLL1Lss5QgUSAeu",
    "name": "param 1",
    "displayName": "param 1",
    "description": "",
    "createdTime": 1734618662756,
    "creatorID": "5O908pyGoCqw6QH1nt8v82",
    "lastModifierID": "5O908pyGoCqw6QH1nt8v82",
    "parameters": [
      {
        "name": "prm1",
        "ref_type": "static",
        "param_type": "boolean",
        "value": false
      },
      {
        "name": "prm2",
        "ref_type": "static",
        "param_type": "boolean",
        "value": false
      }
    ]
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Path Parameters

name
string
required

Body

application/json
description
string

Param Store Description

parameters
object[]

List of Parameters

  • Option 1
  • Option 2
  • Option 3
  • Option 4
  • Option 5
  • Option 6
  • Option 7
  • Option 8
  • Option 9
  • Option 10
  • Option 11
  • Option 12
  • Option 13

Response

200 - application/json

Update param store

message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.

I